diff --git a/src/reducers/index.ts b/src/reducers/index.ts index 73657e8..29edd05 100644 --- a/src/reducers/index.ts +++ b/src/reducers/index.ts @@ -2,12 +2,12 @@ import { History } from 'history'; import { combineReducers } from 'redux'; import { Todo } from '../model/model'; -import * as todoReducder from './todo'; +import * as todoReducer from './todo'; export interface RootState { todoList: Todo[]; } export default (history: History) => combineReducers({ - ...todoReducder -}); \ No newline at end of file + ...todoReducer +});