You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
341 B

  1. export const NOTIFICATION_DISMISS = 'NOTIFICATION_DISMISS';
  2. export const NOTIFICATION_CLEAR = 'NOTIFICATION_CLEAR';
  3. export function dismissNotification(notification) {
  4. return {
  5. type: NOTIFICATION_DISMISS,
  6. notification: notification
  7. };
  8. };
  9. export function clearNotifications() {
  10. return {
  11. type: NOTIFICATION_CLEAR
  12. };
  13. };