Add notification when merging changes into the tree
This commit is contained in:
@@ -1,11 +1,15 @@
|
||||
import { ActionTypes, AppState, CustomAction } from '../reducers'
|
||||
import { Dispatch } from 'redux'
|
||||
import { ActionTypes } from '../reducers'
|
||||
|
||||
export const showError = (error?: string) => ({
|
||||
error,
|
||||
type: ActionTypes.showError,
|
||||
})
|
||||
|
||||
export const showNotification = (notification?: string) => ({
|
||||
notification,
|
||||
type: ActionTypes.showNotification,
|
||||
})
|
||||
|
||||
export const didLaunch = () => ({
|
||||
type: ActionTypes.didLaunch,
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user