1
0
mirror of https://github.com/trezor/trezor-wallet synced 2024-11-13 20:08:56 +00:00
trezor-wallet/src/js/reducers/index.js

42 lines
1.1 KiB
JavaScript
Raw Normal View History

2017-12-13 11:01:37 +00:00
/* @flow */
'use strict';
import { combineReducers } from 'redux';
import { routerReducer } from 'react-router-redux';
2018-02-20 09:30:36 +00:00
import DOM from './AppReducer.js';
2018-03-08 16:10:53 +00:00
import log from './LogReducer.js';
2018-02-20 09:30:36 +00:00
import localStorage from './LocalStorageReducer.js';
2017-12-13 11:01:37 +00:00
import connect from './TrezorConnectReducer.js';
2018-02-20 09:30:36 +00:00
import notifications from './NotificationReducer.js';
2017-12-13 11:01:37 +00:00
import modal from './ModalReducer.js';
import web3 from './Web3Reducer.js';
2018-02-20 09:30:36 +00:00
import accounts from './AccountsReducer.js';
import accountDetail from './AccountDetailReducer.js';
2017-12-13 11:01:37 +00:00
import sendForm from './SendFormReducer.js';
2018-02-20 09:30:36 +00:00
import receive from './ReceiveReducer.js';
import summary from './SummaryReducer.js';
import tokens from './TokensReducer.js';
import discovery from './DiscoveryReducer.js';
2018-03-08 16:10:53 +00:00
import pending from './PendingTxReducer.js';
import fiat from './FiatRateReducer.js';
2017-12-13 11:01:37 +00:00
export default combineReducers({
router: routerReducer,
DOM,
2018-03-08 16:10:53 +00:00
log,
2018-02-20 09:30:36 +00:00
localStorage,
2017-12-13 11:01:37 +00:00
connect,
2018-02-20 09:30:36 +00:00
notifications,
2017-12-13 11:01:37 +00:00
modal,
web3,
2018-02-20 09:30:36 +00:00
accounts,
accountDetail,
sendForm,
receive,
summary,
tokens,
2018-03-08 16:10:53 +00:00
discovery,
pending,
fiat
2017-12-13 11:01:37 +00:00
});