mirror of
https://github.com/trezor/trezor-wallet
synced 2024-11-28 03:08:30 +00:00
Fix imports
This commit is contained in:
parent
85df75c8c5
commit
a837db7a49
@ -7,7 +7,7 @@ import Tooltip from 'rc-tooltip';
|
|||||||
import { QRCode } from 'react-qr-svg';
|
import { QRCode } from 'react-qr-svg';
|
||||||
|
|
||||||
import { Notification } from 'components/Notification';
|
import { Notification } from 'components/Notification';
|
||||||
import SelectedAccount from '../SelectedAccount';
|
import SelectedAccount from 'views/Wallet/components/SelectedAccount';
|
||||||
|
|
||||||
import type { Props } from './index';
|
import type { Props } from './index';
|
||||||
|
|
||||||
@ -96,6 +96,6 @@ const AccountReceive = (props: Props) => {
|
|||||||
|
|
||||||
export default (props: Props) => (
|
export default (props: Props) => (
|
||||||
<SelectedAccount {...props}>
|
<SelectedAccount {...props}>
|
||||||
<Receive {...props} />
|
<AccountReceive {...props} />
|
||||||
</SelectedAccount>
|
</SelectedAccount>
|
||||||
);
|
);
|
@ -5,12 +5,11 @@ import styled from 'styled-components';
|
|||||||
import Select from 'react-select';
|
import Select from 'react-select';
|
||||||
import { H2 } from 'components/Heading';
|
import { H2 } from 'components/Heading';
|
||||||
import { calculate, validation } from 'actions/SendFormActions';
|
import { calculate, validation } from 'actions/SendFormActions';
|
||||||
|
import SelectedAccount from 'views/Wallet/components/SelectedAccount';
|
||||||
import type { Token } from 'flowtype';
|
import type { Token } from 'flowtype';
|
||||||
import AdvancedForm from './components/AdvancedForm';
|
import AdvancedForm from './components/AdvancedForm';
|
||||||
import PendingTransactions from './components/PendingTransactions';
|
import PendingTransactions from './components/PendingTransactions';
|
||||||
import { FeeSelectValue, FeeSelectOption } from './components/FeeSelect';
|
import { FeeSelectValue, FeeSelectOption } from './components/FeeSelect';
|
||||||
import SelectedAccount from '../SelectedAccount';
|
|
||||||
|
|
||||||
|
|
||||||
import type { Props } from './index';
|
import type { Props } from './index';
|
||||||
|
|
||||||
|
@ -13,7 +13,7 @@ import WalletContainer from 'views/Wallet';
|
|||||||
import AccountSummary from 'views/Wallet/views/AccountSummary/Container';
|
import AccountSummary from 'views/Wallet/views/AccountSummary/Container';
|
||||||
import AccountSend from 'views/Wallet/views/AccountSend/Container';
|
import AccountSend from 'views/Wallet/views/AccountSend/Container';
|
||||||
import AccountReceive from 'views/Wallet/views/AccountReceive/Container';
|
import AccountReceive from 'views/Wallet/views/AccountReceive/Container';
|
||||||
import AccountSignVerify from 'views/Wallet/views/AccountSignVerify/Container';
|
import AccountSignVerify from 'views/Wallet/views/AccountSignVerify';
|
||||||
|
|
||||||
import WalletDashboard from 'views/Wallet/views/Dashboard';
|
import WalletDashboard from 'views/Wallet/views/Dashboard';
|
||||||
import WalletDeviceSettings from 'views/Wallet/views/DeviceSettings';
|
import WalletDeviceSettings from 'views/Wallet/views/DeviceSettings';
|
||||||
|
Loading…
Reference in New Issue
Block a user