Skip to content

Commit 30a8875

Browse files
committed
Import Reducer as the Redux namespace is gone on latest version
1 parent 81606c8 commit 30a8875

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/app/redux/reducers.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
import { combineReducers } from 'redux';
1+
import { combineReducers, Reducer } from 'redux';
22
import { routerReducer } from 'react-router-redux';
33
import { worldReducer } from './modules/world';
44
import { IStore } from './IStore';
55

66
const { reducer } = require('redux-connect');
77

8-
const rootReducer: Redux.Reducer<IStore> = combineReducers<any>({
8+
const rootReducer: Reducer<IStore> = combineReducers<any>({
99
routing: routerReducer,
1010
world: worldReducer,
1111
reduxAsyncConnect: reducer

0 commit comments

Comments
 (0)