import {combineReducers} from "redux"; import hello from "./hello"; import color from "./color"; const reducer = combineReducers({ hello, color }); export default reducer;