mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-14 13:46:55 +03:00
10bf7bc084
* chore(*): upgrade prettier * chore(*): upgrade prettier
9 lines
151 B
JavaScript
9 lines
151 B
JavaScript
import { combineReducers } from 'redux';
|
|
import todos from './todos';
|
|
|
|
const rootReducer = combineReducers({
|
|
todos,
|
|
});
|
|
|
|
export default rootReducer;
|