1
0
mirror of https://github.com/trezor/trezor-wallet synced 2025-01-05 13:51:01 +00:00
trezor-wallet/src/js/containers/HistoryContainer.js
Szymon Lesisz cb83b2b7b6 bordel 2
2018-02-20 10:30:36 +01:00

23 lines
580 B
JavaScript

/* @flow */
'use strict';
import React, { Component, PropTypes } from 'react';
import { bindActionCreators } from 'redux';
import { connect } from 'react-redux';
import History from '../components/wallet/History';
import * as SendFormActions from '../actions/SendFormActions';
function mapStateToProps(state, own) {
return {
web3: state.web3.web3,
};
}
function mapDispatchToProps(dispatch) {
return {
//sendFormActions: bindActionCreators(SendFormActions, dispatch),
};
}
export default connect(mapStateToProps, mapDispatchToProps)(History);