hotfix: add walletSummary in rootReducer

This commit is contained in:
George Lima 2018-12-10 14:08:03 -03:00
parent d294f46f79
commit 3c2b200636
1 changed files with 2 additions and 2 deletions

View File

@ -4,9 +4,9 @@ import { combineReducers } from 'redux';
import { connectRouter } from 'connected-react-router';
import type { RouterHistory } from 'react-router-dom';
import todoReducer from './todo';
import wallet from './wallet';
export const createRootReducer = (history: RouterHistory) => combineReducers({
todos: todoReducer,
walletSummary: wallet,
router: connectRouter(history),
});