1 2 3 4 5 6 7 8 9 10 11 12 13
import * as types from '../../types' // import { session, getDefault, getDefaultInt } from '../../session' const initialState = { } export default function siteReducer(state = initialState, action) { // console.log(action.type, action) switch (action.type) { default: return state } }