8 lines
168 B
JavaScript
8 lines
168 B
JavaScript
import { NOTIFICATION_DISMISS } from '../constants/notifications';
|
|
|
|
export function dismissNotification (id) {
|
|
return {
|
|
type: NOTIFICATION_DISMISS,
|
|
id
|
|
};
|
|
}
|