1
0
mirror of https://github.com/trezor/trezor-wallet synced 2024-11-15 12:59:09 +00:00
trezor-wallet/src/js/components/wallet/pages/Dashboard.js

45 lines
982 B
JavaScript
Raw Normal View History

2018-02-20 09:30:36 +00:00
import React from 'react';
2018-08-10 15:51:53 +00:00
import styled from 'styled-components';
import { connect } from 'react-redux';
2018-08-10 15:51:53 +00:00
import { H2 } from '~/js/components/common/Heading';
import DashboardImg from '~/images/dashboard.png';
2018-02-20 09:30:36 +00:00
2018-08-10 15:51:53 +00:00
const Wrapper = styled.div`
display: flex;
flex-direction: column;
flex: 1;
`;
const StyledH2 = styled(H2)`
padding: 24px 48px;
`;
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;
`;
2018-07-30 10:52:13 +00:00
const Dashboard = () => (
2018-08-10 15:51:53 +00:00
<Wrapper>
<StyledH2>Dashboard</StyledH2>
<Row>
2018-08-10 13:33:23 +00:00
<H2>Please select your coin</H2>
2018-08-10 15:51:53 +00:00
<P>You will gain access to recieving &amp; sending selected coin</P>
2018-07-30 10:52:13 +00:00
<img src={DashboardImg} height="34" width="auto" alt="Dashboard" />
2018-08-10 15:51:53 +00:00
</Row>
</Wrapper>
2018-07-30 10:52:13 +00:00
);
2018-02-20 09:30:36 +00:00
2018-04-16 21:19:50 +00:00
export default connect(null, null)(Dashboard);