index.js 166 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 import { combineReducers } from 'redux'; import message from './message_reducer'; const rootReducer = combineReducers({ message, }); export default rootReducer;