mirror of
https://iceshrimp.dev/blueb/Chuckya-fe-standalone.git
synced 2026-01-11 21:43:15 -08:00
8 lines
195 B
JavaScript
8 lines
195 B
JavaScript
export const NOTIFICATION_DISMISS = 'NOTIFICATION_DISMISS';
|
|
|
|
export function dismissNotification(notification) {
|
|
return {
|
|
type: NOTIFICATION_DISMISS,
|
|
notification: notification
|
|
};
|
|
};
|