OSDN Git Service

relized the basic step from initialize account
[bytom/bytom-dashboard.git] / src / features / initialization / components / Index / Index.jsx
1 import React from 'react'
2 import styles from './Index.scss'
3 import { Link } from 'react-router'
4
5 class Index extends React.Component {
6   constructor(props) {
7     super(props)
8   }
9
10   render() {
11     return (
12       <div className={styles.main}>
13         <Link to='/initialization/register'>
14           Create Wallet
15         </Link>
16         <Link to='/initialization/restore'>
17           Restore Wallet
18         </Link>
19       </div>
20     )
21   }
22 }
23
24 export default Index