mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-13 04:28:41 -09:00
5 lines
144 B
HTML
5 lines
144 B
HTML
<script>
|
|
require('electron').ipcRenderer.on('notification', (ev, { title, body }) => {
|
|
new Notification(title, { body });
|
|
});
|
|
</script>
|