blob: 92a5ea47b5b15181cfee5730e692ec4f3d2f2ff6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
const { app, BrowserWindow } = require("electron")
app.whenReady().then(_ => {
new BrowserWindow({
width: 800,
height: 600
}).loadFile("main.html")
})
app.on("window-all-closed", _ => {
app.quit()
})
|