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.
trezor-wallet/src/views/Wallet/views/Dashboard/index.js

41 lines
899 B

6 years ago
import React from 'react';
import styled from 'styled-components';
import { connect } from 'react-redux';
import { H2 } from 'components/Heading';
import DashboardImg from 'images/dashboard.png';
6 years ago
const Wrapper = styled.div`
display: flex;
flex-direction: column;
flex: 1;
`;
const Row = styled.div`
flex: 1;
display: flex;
padding: 0px 48px;
flex-direction: column;
justify-content: center;
align-items: center;
`;
const P = styled.p`
padding: 24px 0px;
text-align: center;
`;
const Dashboard = () => (
<Wrapper>
<H2>Dashboard</H2>
<Row>
<H2>Please select your coin</H2>
<P>You will gain access to recieving &amp; sending selected coin</P>
<img src={DashboardImg} height="34" width="auto" alt="Dashboard" />
</Row>
</Wrapper>
);
6 years ago
export default connect(null, null)(Dashboard);