import React from 'react'; import styled from 'styled-components'; import { connect } from 'react-redux'; import Content from 'views/Wallet/components/Content'; import EthIcon from 'images/coins/eth.png'; import RippleIcon from 'images/coins/xrp.png'; import { H1 } from 'components/Heading'; import Paragraph from 'components/Paragraph'; const Wrapper = styled.div` display: flex; flex-direction: column; `; const Row = styled.div` flex: 1; display: flex; padding: 50px 0; flex-direction: column; align-items: center; `; const StyledP = styled(Paragraph)` padding: 0 0 15px 0; text-align: center; `; const Overlay = styled.div` display: flex; width: 100%; height: 40px; justify-content: center; align-items: center; opacity: 0.2; background: white; `; const Image = styled.img` margin-right: 10px; &:last-child { margin-right: 0px; } `; const Dashboard = () => (

Please select your coin

You will gain access to receiving & sending selected coin
); export default connect(null, null)(Dashboard);