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';
|
2018-04-11 10:06:46 +00:00
|
|
|
import { connect } from 'react-redux';
|
2018-08-10 15:51:53 +00:00
|
|
|
|
|
|
|
import { H2 } from '~/js/components/common/Heading';
|
2018-05-18 16:26:45 +00:00
|
|
|
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 & 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);
|