import * as types from '../../types' import { session, getDefault, getDefaultInt } from '../../session' import { crudState, crudReducer } from '../../api/crud.reducer' const initialState = { options: { } } export default function alignReducer(state = initialState, action) { // console.log(action.type, action) switch (action.type) { default: return state } }