import { SET_INIT_DATA } from '../actionType'; export default function initDataReducer(state = null, action: any) { switch (action.type) { case SET_INIT_DATA: return action.data; default: return state; } };