Skip to content

Instantly share code, notes, and snippets.

@vinicius5581
Created November 6, 2017 23:30
Show Gist options
  • Save vinicius5581/d8d240938edf61a6489afab99bb83411 to your computer and use it in GitHub Desktop.
Save vinicius5581/d8d240938edf61a6489afab99bb83411 to your computer and use it in GitHub Desktop.
redux basic reducer
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