mirror of
https://github.com/electron/electron.git
synced 2026-01-29 09:18:18 -05:00
5 lines
119 B
JavaScript
5 lines
119 B
JavaScript
const { ipcRenderer } = require('electron')
|
|
window.onload = function () {
|
|
ipcRenderer.send('answer', process.argv)
|
|
}
|