mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-13 04:28:41 -09:00
9 lines
168 B
JavaScript
9 lines
168 B
JavaScript
|
|
import { NOTIFICATION_DISMISS } from '../constants/notifications';
|
||
|
|
|
||
|
|
export function dismissNotification (id) {
|
||
|
|
return {
|
||
|
|
type: NOTIFICATION_DISMISS,
|
||
|
|
id
|
||
|
|
};
|
||
|
|
}
|