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 } }