You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.0 KiB
39 lines
1.0 KiB
import React, { Component } from 'react';
|
|
import { Switch, Route } from 'react-router-dom';
|
|
|
|
import {
|
|
NEW_ACCOUNT_ROUTE,
|
|
IMPORT_ACCOUNT_ROUTE,
|
|
CONNECT_HARDWARE_ROUTE,
|
|
} from '../../helpers/constants/routes';
|
|
import NewAccountCreateForm from './new-account.container';
|
|
import NewAccountImportForm from './import-account';
|
|
import ConnectHardwareForm from './connect-hardware';
|
|
|
|
export default class CreateAccountPage extends Component {
|
|
render() {
|
|
return (
|
|
<div className="new-account">
|
|
<div className="new-account__form">
|
|
<Switch>
|
|
<Route
|
|
exact
|
|
path={NEW_ACCOUNT_ROUTE}
|
|
component={NewAccountCreateForm}
|
|
/>
|
|
<Route
|
|
exact
|
|
path={IMPORT_ACCOUNT_ROUTE}
|
|
component={NewAccountImportForm}
|
|
/>
|
|
<Route
|
|
exact
|
|
path={CONNECT_HARDWARE_ROUTE}
|
|
component={ConnectHardwareForm}
|
|
/>
|
|
</Switch>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|