Created
November 6, 2017 23:30
-
-
Save vinicius5581/d8d240938edf61a6489afab99bb83411 to your computer and use it in GitHub Desktop.
redux basic reducer
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { combineReducers } from 'redux' | |
const reducerTest = (state = {}) => state; | |
export default combineReducers({ | |
reducerTest | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment