Adding a notification stack for error messages
This commit is contained in:
@ -0,0 +1,8 @@
|
||||
export const NOTIFICATION_DISMISS = 'NOTIFICATION_DISMISS';
|
||||
|
||||
export function dismissNotification(notification) {
|
||||
return {
|
||||
type: NOTIFICATION_DISMISS,
|
||||
notification: notification
|
||||
};
|
||||
};
|
Reference in New Issue
Block a user