pagraphcontrol/index.js
2018-11-08 04:36:48 +03:00

12 lines
238 B
JavaScript

const { app, BrowserWindow } = require('electron');
const theme = require('./utils/theme');
app.on('ready', () => {
const win = new BrowserWindow({
backgroundColor: theme.colors.themeBaseColor,
});
win.loadFile('index.html');
});