-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathactions.js
37 lines (35 loc) · 1.12 KB
/
actions.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
import accessControl from 'features/accessControl/actions'
import { actions as account } from 'features/accounts'
import { actions as app } from 'features/app'
import { actions as asset } from 'features/assets'
import { actions as backUp } from 'features/backup'
import { actions as balance } from 'features/balances'
import { actions as configuration } from 'features/configuration'
import { actions as core } from 'features/core'
import { actions as initialization } from 'features/initialization'
import { actions as mockhsm } from 'features/mockhsm'
import { actions as testnet } from 'features/testnet'
import { actions as transaction } from 'features/transactions'
import { actions as transactionFeed } from 'features/transactionFeeds'
import { actions as tutorial } from 'features/tutorial'
import { actions as unspent } from 'features/unspents'
import { actions as peer } from 'features/peers'
const actions = {
accessControl,
account,
app,
asset,
backUp,
balance,
configuration,
core,
initialization,
key: mockhsm,
testnet,
transaction,
transactionFeed,
tutorial,
unspent,
peer
}
export default actions