This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2016-09-12 10:20:55 -07:00
|
|
|
export const NOTIFICATION_DISMISS = 'NOTIFICATION_DISMISS';
|
2016-09-21 13:07:18 -07:00
|
|
|
export const NOTIFICATION_CLEAR = 'NOTIFICATION_CLEAR';
|
2016-09-12 10:20:55 -07:00
|
|
|
|
|
|
|
export function dismissNotification(notification) {
|
|
|
|
return {
|
|
|
|
type: NOTIFICATION_DISMISS,
|
|
|
|
notification: notification
|
|
|
|
};
|
|
|
|
};
|
2016-09-21 13:07:18 -07:00
|
|
|
|
|
|
|
export function clearNotifications() {
|
|
|
|
return {
|
|
|
|
type: NOTIFICATION_CLEAR
|
|
|
|
};
|
|
|
|
};
|