mirror of
https://github.com/trezor/trezor-wallet
synced 2025-01-11 16:41:06 +00:00
Route to proper view
This commit is contained in:
parent
1143d78405
commit
df9f7f51a1
@ -19,10 +19,11 @@ import WalletAcquire from 'views/Wallet/views/Acquire';
|
|||||||
import WalletUnreadableDevice from 'views/Wallet/views/UnreadableDevice';
|
import WalletUnreadableDevice from 'views/Wallet/views/UnreadableDevice';
|
||||||
|
|
||||||
// wallet views - accounts
|
// wallet views - accounts
|
||||||
|
// import SummaryContainer from './Wallet/components/Summary/Container';
|
||||||
|
import AccountContainer from 'views/Wallet/views/Account/Container';
|
||||||
import SignVerifyContainer from './Wallet/components/Sign';
|
import SignVerifyContainer from './Wallet/components/Sign';
|
||||||
import ReceiveContainer from './Wallet/components/Receive/Container';
|
import ReceiveContainer from './Wallet/components/Receive/Container';
|
||||||
import SendFormContainer from './Wallet/components/Send/Container';
|
import SendFormContainer from './Wallet/components/Send/Container';
|
||||||
import SummaryContainer from './Wallet/components/Summary/Container';
|
|
||||||
|
|
||||||
import store, { history } from '../store';
|
import store, { history } from '../store';
|
||||||
|
|
||||||
@ -44,7 +45,7 @@ const App = () => (
|
|||||||
<Route exact path="/device/:device/bootloader" component={WalletBootloader} />
|
<Route exact path="/device/:device/bootloader" component={WalletBootloader} />
|
||||||
<Route exact path="/device/:device/initialize" component={WalletInitialize} />
|
<Route exact path="/device/:device/initialize" component={WalletInitialize} />
|
||||||
<Route exact path="/device/:device/settings" component={WalletDeviceSettings} />
|
<Route exact path="/device/:device/settings" component={WalletDeviceSettings} />
|
||||||
<Route exact path="/device/:device/network/:network/account/:account" component={SummaryContainer} />
|
<Route exact path="/device/:device/network/:network/account/:account" component={AccountContainer} />
|
||||||
<Route path="/device/:device/network/:network/account/:account/send" component={SendFormContainer} />
|
<Route path="/device/:device/network/:network/account/:account/send" component={SendFormContainer} />
|
||||||
<Route path="/device/:device/network/:network/account/:account/send/override" component={SendFormContainer} />
|
<Route path="/device/:device/network/:network/account/:account/send/override" component={SendFormContainer} />
|
||||||
<Route path="/device/:device/network/:network/account/:account/receive" component={ReceiveContainer} />
|
<Route path="/device/:device/network/:network/account/:account/receive" component={ReceiveContainer} />
|
||||||
|
Loading…
Reference in New Issue
Block a user