codecrumbs/example-project/src-client/notification/actions.js

9 lines
146 B
JavaScript

import { DISMISS_NOTIFICATION } from './action-types';
export function dismissNotification() {
return {
type: DISMISS_NOTIFICATION
};
}