mirror of
https://github.com/Dispatcharr/Dispatcharr.git
synced 2026-01-23 10:45:27 +00:00
9 lines
No EOL
305 B
JavaScript
9 lines
No EOL
305 B
JavaScript
import { notifications } from '@mantine/notifications';
|
|
|
|
export function showNotification(notificationObject) {
|
|
return notifications.show(notificationObject);
|
|
}
|
|
|
|
export function updateNotification(notificationId, notificationObject) {
|
|
return notifications.update(notificationId, notificationObject);
|
|
} |