Add notepad

This commit is contained in:
proteriax
2021-10-26 20:48:58 -04:00
parent 7c12f499f2
commit 26f8485761
14 changed files with 2590 additions and 934 deletions

8
electron/app/index.tsx Normal file
View File

@ -0,0 +1,8 @@
const replaceText = (selector, text) => {
const element = document.getElementById(selector)
if (element) element.innerText = text
}
for (const type of ["chrome", "node", "electron"]) {
replaceText(`${type}-version`, process.versions[type])
}