Skip to content

Instantly share code, notes, and snippets.

@AllGistsEqual
Created February 22, 2021 20:04
Show Gist options
  • Save AllGistsEqual/b1f0d419d4d5c8a1805db97e238af658 to your computer and use it in GitHub Desktop.
Save AllGistsEqual/b1f0d419d4d5c8a1805db97e238af658 to your computer and use it in GitHub Desktop.
// File: src/redux/rootReducer.ts
import { combineReducers } from '@reduxjs/toolkit'
import articleReducer from './ducks/articles'
const rootReducer = combineReducers({
articles: articleReducer,
})
export default rootReducer
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment