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