import * as types from 'app/types' const initialState = { } export default function siteReducer(state = initialState, action) { // console.log(action.type, action) switch (action.type) { default: return state } }