mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
b5ece42ca1
* Sending showCustodyConfirmLink as a prop and fixing other issues * Upgraded MMI extension monrepo and trying to fix the issue * prevents deeplink from closing * Fixed styles of Custody view and changed the place of it * Fixed CI issues * fixing eslint issues * Update LavaMoat policies * fixing tests * Fixed test * updated snapshots * reorder, otherwise it won't make sense * adds necessary methods * removes duplicated key value * updated snapshot --------- Co-authored-by: Antonio Regadas <antonio.regadas@consensys.net> Co-authored-by: MetaMask Bot <metamaskbot@users.noreply.github.com> Co-authored-by: António Regadas <apregadas@gmail.com>
20 lines
512 B
JavaScript
20 lines
512 B
JavaScript
import React from 'react';
|
|
import { Route, Switch } from 'react-router-dom';
|
|
import Box from '../../components/ui/box';
|
|
import { CONNECT_HARDWARE_ROUTE } from '../../helpers/constants/routes';
|
|
import ConnectHardwareForm from './connect-hardware';
|
|
|
|
export default function CreateAccountPage() {
|
|
return (
|
|
<Box className="new-account">
|
|
<Switch>
|
|
<Route
|
|
exact
|
|
path={CONNECT_HARDWARE_ROUTE}
|
|
component={ConnectHardwareForm}
|
|
/>
|
|
</Switch>
|
|
</Box>
|
|
);
|
|
}
|