mirror of
https://git.bsd.gay/fef/nyastodon.git
synced 2025-01-14 18:14:05 +01: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
|
|
};
|
|
};
|