mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-13 12:38:39 -09:00
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
|
|
};
|
|
}
|