import React from 'react'; import { Route, Switch } from 'react-router-dom'; import Box from '../../components/ui/box'; import { CONNECT_HARDWARE_ROUTE, IMPORT_ACCOUNT_ROUTE, NEW_ACCOUNT_ROUTE, } from '../../helpers/constants/routes'; import ConnectHardwareForm from './connect-hardware'; import NewAccountImportForm from './import-account'; import NewAccountCreateForm from './new-account.container'; export default function CreateAccountPage() { return ( ); }