/* @flow */ 'use strict'; import React from 'react'; import { bindActionCreators } from 'redux'; import { connect } from 'react-redux'; const Dashboard = (props: any): any => { return (

Dashboard

Please select your coin

You will gain access to recieving & sending selected coin

Dashboard
); } const mapStateToProps = (state, own) => { return { }; } const mapDispatchToProps = (dispatch) => { return { }; } export default connect(mapStateToProps, mapDispatchToProps)(Dashboard);