src/Tools/Electron/test/main.js
author Fabian Huch <huch@in.tum.de>
Thu, 23 Nov 2023 19:56:27 +0100
changeset 79025 f78ee2d48bf5
parent 75453 e2aa3c1f90a1
permissions -rw-r--r--
handle inflection point in interpolation with monotone prefix;

const { app, BrowserWindow } = require('electron')

const createWindow = () => {
  const win = new BrowserWindow({
    width: 800,
    height: 600
  })

  win.loadURL(process.env.URL || 'https://isabelle.in.tum.de')
}

app.whenReady().then(() => {
  createWindow()
})