Files
BH-Bookstore-2023/frontend/client/main.js
2023-11-29 13:38:34 +00:00

8 lines
193 B
JavaScript

const { app, BrowserWindow } = require('electron');
function createWindow() {
const win = new BrowserWindow();
win.loadURL('http://localhost:4000/');
}
app.whenReady().then(createWindow);