Pierwszy upload

This commit is contained in:
2026-06-16 23:02:36 +02:00
commit b8675cbed2
5 changed files with 6499 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
const { app, BrowserWindow } = require('electron')
const createWindow = () => {
const win = new BrowserWindow({
width: 800,
height: 800
})
win.loadFile('index.html')
}
app.whenReady().then(() => {
createWindow()
})