mirror of
https://github.com/trezor/trezor-wallet
synced 2025-07-08 23:58:21 +00:00
22 lines
605 B
JavaScript
22 lines
605 B
JavaScript
/* @flow */
|
|
'use strict';
|
|
|
|
import React from 'react';
|
|
import { bindActionCreators } from 'redux';
|
|
import { connect } from 'react-redux';
|
|
|
|
const Dashboard = () => {
|
|
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>
|
|
);
|
|
}
|
|
|
|
export default connect(null, null)(Dashboard);
|