1
0
mirror of https://github.com/trezor/trezor-wallet synced 2025-07-12 01:28:13 +00:00
trezor-wallet/src/js/components/common/Log.js
Szymon Lesisz cb83b2b7b6 bordel 2
2018-02-20 10:30:36 +01:00

40 lines
765 B
JavaScript

/* @flow */
'use strict';
import React from 'react';
import { bindActionCreators } from 'redux';
import { connect } from 'react-redux';
import * as SendFormActions from '../../actions/SendFormActions';
import { getAddress } from '../../actions/TrezorConnectActions';
const Log = (props: any) => {
return (
<details className="log">
Log
</details>
)
}
function mapStateToProps(state, own) {
}
function mapDispatchToProps(dispatch) {
}
export default connect(
(state) => {
return {
accounts: state.accounts,
receive: state.receive
};
},
(dispatch) => {
return {
getAddress: bindActionCreators(getAddress, dispatch),
};
}
)(Log);