UNPKG

generator-react-webpack-base

Version:

A base template for a fullstack react webpack application

12 lines (9 loc) 240 B
/** * RootReducer.js * The root reducer to combine all other reducers used in the application **/ import {combineReducers} from 'redux'; import dummyReducer from './DummyReducer'; export default combineReducers({ dummy: dummyReducer });