Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save iagodahlem/98bf6bc94d81ad38476c2b4c96600e3c to your computer and use it in GitHub Desktop.
Save iagodahlem/98bf6bc94d81ad38476c2b4c96600e3c to your computer and use it in GitHub Desktop.
Scalable Frontend - The State Layer - Combine Reducers
import { combineReducers } from 'redux'
const authorsReducer = (state, action) => newState
const articlesReducer = (state, action) => newState
const rootReducer = combineReducers({
authors: authorsReducer,
articles: articlesReducer,
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment