mirror of
https://github.com/yingziwu/mastodon.git
synced 2026-02-05 03:55:14 +00: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
|
|
};
|
|
};
|