9 lines
146 B
JavaScript
9 lines
146 B
JavaScript
import { DISMISS_NOTIFICATION } from './action-types';
|
|
|
|
|
|
export function dismissNotification() {
|
|
return {
|
|
type: DISMISS_NOTIFICATION
|
|
};
|
|
}
|