index.js 179 B

12345678910
  1. import {combineReducers} from "redux";
  2. import hello from "./hello";
  3. import color from "./color";
  4. const reducer = combineReducers({
  5. hello,
  6. color
  7. });
  8. export default reducer;