1 2 3 4
import * as types from './actionTypes'; export const initAction = (data) => ({ type: types.INIT, data }); export const clearAction = { type: types.CLEAR };