blob: cf1e50a69cea2498a453a17e11d7442a545032cb (
plain) (
blame)
1
2
3
4
5
6
7
8
|
export const NOTIFICATION_DISMISS = 'NOTIFICATION_DISMISS';
export function dismissNotification(notification) {
return {
type: NOTIFICATION_DISMISS,
notification: notification
};
};
|