Files
electron/docs/fiddles/features/notifications/renderer/renderer.js
2020-12-03 15:54:49 +09:00

8 lines
177 B
JavaScript

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