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