7 lines
193 B
TypeScript
7 lines
193 B
TypeScript
export function useNotification() {
|
|
const show = (title : string, body : string) => {
|
|
window.electron.ipcRenderer.invoke('notification:show', title, body);
|
|
}
|
|
|
|
return show;
|
|
} |