import React from 'react'; import styled from 'styled-components'; import { connect } from 'react-redux'; import { H2 } from 'components/common/Heading'; import DashboardImg from 'images/dashboard.png'; 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; `; const Dashboard = () => ( Dashboard

Please select your coin

You will gain access to recieving & sending selected coin

Dashboard
); export default connect(null, null)(Dashboard);