mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-11 20:27:07 +03:00
13 lines
210 B
TypeScript
13 lines
210 B
TypeScript
import { combineReducers } from 'redux';
|
|
import todos, { Todo } from './todos';
|
|
|
|
export interface TodoState {
|
|
todos: Todo[];
|
|
}
|
|
|
|
const rootReducer = combineReducers({
|
|
todos,
|
|
});
|
|
|
|
export default rootReducer;
|