Skip to content

Instantly share code, notes, and snippets.

@kiok46
Created June 10, 2018 10:50
Show Gist options
  • Save kiok46/ec9617231c7eff9a0a2e8474e8c22b8c to your computer and use it in GitHub Desktop.
Save kiok46/ec9617231c7eff9a0a2e8474e8c22b8c to your computer and use it in GitHub Desktop.
Redux, Store, Actions, Reducers and logger: Get Started and a little further (1)
import { combineReducers } from 'redux';
import TextReducer from './TextReducer';
export default combineReducers({
// the keys here are going to be the property of state that we are producing.
text_reducer: TextReducer
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment