hyper/app/lib/actions/notifications.js
Guillermo Rauch 477e40e433 refactor
2016-07-13 13:45:14 -07:00

8 lines
168 B
JavaScript

import { NOTIFICATION_DISMISS } from '../constants/notifications';
export function dismissNotification (id) {
return {
type: NOTIFICATION_DISMISS,
id
};
}