1
0
mirror of https://github.com/ascribe/onion.git synced 2024-06-30 13:41:57 +02:00
onion/js/actions/global_notification_actions.js
2015-10-06 16:47:59 +02:00

17 lines
323 B
JavaScript

'use strict';
import { alt } from '../alt';
class GlobalNotificationActions {
constructor() {
this.generateActions(
'appendGlobalNotification',
'shiftGlobalNotification',
'emulateEmptyStore'
);
}
}
export default alt.createActions(GlobalNotificationActions);