8 lines
177 B
JavaScript
8 lines
177 B
JavaScript
|
const myNotification = new Notification('Title', {
|
||
|
body: 'Notification from the Renderer process'
|
||
|
})
|
||
|
|
||
|
myNotification.onclick = () => {
|
||
|
console.log('Notification clicked')
|
||
|
}
|