(notificationObject)
| 1 | import { notifications } from '@mantine/notifications'; |
| 2 | |
| 3 | export function showNotification(notificationObject) { |
| 4 | return notifications.show(notificationObject); |
| 5 | } |
| 6 | |
| 7 | export function updateNotification(notificationId, notificationObject) { |
| 8 | return notifications.update(notificationId, notificationObject); |
no outgoing calls
no test coverage detected