const createWindow = () => { const mainWindow = new BrowserWindow({ width: 800, height: 400, }); mainWindow.loadFile(path.join(__dirname, 'index.html')); };