snt-voting/app/components/flow/ConnectYourWallet.js

20 lines
718 B
JavaScript
Raw Normal View History

2018-10-16 16:20:54 -04:00
import {Link} from "react-router-dom";
import Button from '@material-ui/core/Button';
import React from 'react';
import Typography from '@material-ui/core/Typography'
const ConnectYourWallet = (props) => <div className="section center">
<Typography variant="headline">Connect your wallet</Typography>
<Typography variant="body1">To start voting, connect to a wallet where you hold your SNT assets.</Typography>
<div className="action">
<Button color="primary" variant="contained">CONNECT USING STATUS</Button>
</div>
<div className="action">
<Link to="/otherWallets">
<Button color="primary">CONNECT WITH ANOTHER WALLET</Button>
</Link>
</div>
</div>;
export default ConnectYourWallet;