mirror of
https://github.com/electron/electron.git
synced 2026-05-02 03:00:22 -04:00
7 lines
166 B
JavaScript
7 lines
166 B
JavaScript
const { BrowserView, app } = require('electron')
|
|
app.on('ready', function () {
|
|
new BrowserView({}) // eslint-disable-line
|
|
|
|
process.nextTick(() => app.quit())
|
|
})
|