12 lines
222 B
JavaScript
12 lines
222 B
JavaScript
const { app, BrowserWindow } = require("electron");
|
|
|
|
function createWindow() {
|
|
const win = new BrowserWindow({
|
|
width: 1000,
|
|
height: 700,
|
|
});
|
|
|
|
win.loadFile("index.html");
|
|
}
|
|
|
|
app.whenReady().then(createWindow); |