Files
mqtt-explorer/app/src/actions/Global.ts
Thomas Nordquist c20c075bcf Fix linter errors
2019-04-04 10:54:18 +02:00

12 lines
260 B
TypeScript

import { ActionTypes, AppState, CustomAction } from '../reducers'
import { Dispatch } from 'redux'
export const showError = (error?: string) => ({
error,
type: ActionTypes.showError,
})
export const didLaunch = () => ({
type: ActionTypes.didLaunch,
})