shadow55gh
fix: remove node_modules and cache from tracking
81f9dfe
raw
history blame contribute delete
180 Bytes
const { app, BrowserWindow } = require('electron');
app.whenReady().then(() => {
const win = new BrowserWindow({ width: 800, height: 600 });
win.loadFile('loading.html');
});