1
0
mirror of https://github.com/whippyshou/mastodon synced 2024-11-29 23:38:51 +09:00
whippy-edition/app/assets/javascripts/components/actions/notifications.jsx

9 lines
195 B
React
Raw Normal View History

export const NOTIFICATION_DISMISS = 'NOTIFICATION_DISMISS';
export function dismissNotification(notification) {
return {
type: NOTIFICATION_DISMISS,
notification: notification
};
};