You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
trezor-wallet/src/js/containers/DashboardContainer.js

21 lines
427 B

7 years ago
/* @flow */
'use strict';
import React, { Component, PropTypes } from 'react';
import { bindActionCreators } from 'redux';
import { connect } from 'react-redux';
6 years ago
import Dashboard from '../components/wallet/Dashboard';
7 years ago
function mapStateToProps(state, own) {
return {
6 years ago
7 years ago
};
}
function mapDispatchToProps(dispatch) {
6 years ago
return {
7 years ago
};
}
6 years ago
export default connect(mapStateToProps, mapDispatchToProps)(Dashboard);