123456789101112131415161718192021222324 |
- import { combineReducers } from 'redux';
- const mainReducer = combineReducers({
-
- });
- const defaultState = Object.freeze({});
- export default function example(state = defaultState, action = {type:'NO-OP'}) {
- switch( action.type ) {
- default:
- return state;
- }
- }
|