2018-02-20 09:30:36 +00:00
|
|
|
/* @flow */
|
|
|
|
'use strict';
|
|
|
|
|
|
|
|
import React from 'react';
|
2018-04-11 10:06:46 +00:00
|
|
|
import { bindActionCreators } from 'redux';
|
|
|
|
import { connect } from 'react-redux';
|
2018-02-20 09:30:36 +00:00
|
|
|
|
2018-04-16 21:19:50 +00:00
|
|
|
const Dashboard = () => {
|
2018-02-20 09:30:36 +00:00
|
|
|
return (
|
|
|
|
<section className="dashboard">
|
|
|
|
<h2>Dashboard</h2>
|
|
|
|
<div className="row">
|
|
|
|
<h2>Please select your coin</h2>
|
|
|
|
<p>You will gain access to recieving & sending selected coin</p>
|
|
|
|
<img src="./images/dashboard.png" height="34" width="auto" alt="Dashboard" />
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2018-04-16 21:19:50 +00:00
|
|
|
export default connect(null, null)(Dashboard);
|