This commit is contained in:
Kio 2025-04-29 04:36:16 -04:00
commit cd27f7e4af
12 changed files with 1786 additions and 0 deletions

14
index.ts Normal file
View file

@ -0,0 +1,14 @@
const { app, BrowserWindow } = require('electron')
const createWindow = () => {
const win = new BrowserWindow({
width: 800,
height: 600
})
win.loadFile('index.html')
}
app.whenReady().then(() => {
createWindow()
})