mirror of
https://github.com/ascribe/onion.git
synced 2024-11-15 09:35:10 +01:00
17 lines
323 B
JavaScript
17 lines
323 B
JavaScript
'use strict';
|
|
|
|
import { alt } from '../alt';
|
|
|
|
|
|
class GlobalNotificationActions {
|
|
constructor() {
|
|
this.generateActions(
|
|
'appendGlobalNotification',
|
|
'shiftGlobalNotification',
|
|
'emulateEmptyStore'
|
|
);
|
|
}
|
|
}
|
|
|
|
export default alt.createActions(GlobalNotificationActions);
|