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.
32 lines
628 B
32 lines
628 B
import { connect } from 'react-redux'
|
|
import { fetchInfo } from '../../../reducers/info'
|
|
import { fetchPeers } from '../../../reducers/peers'
|
|
import {
|
|
fetchChannels,
|
|
setChannel,
|
|
channelsSelectors,
|
|
setForm
|
|
} from '../../../reducers/channels'
|
|
import Wallet from '../components/Wallet'
|
|
|
|
const mapDispatchToProps = {
|
|
fetchInfo,
|
|
|
|
fetchPeers,
|
|
|
|
fetchChannels,
|
|
setChannel,
|
|
|
|
setForm
|
|
}
|
|
|
|
const mapStateToProps = (state) => ({
|
|
info: state.info,
|
|
|
|
peers: state.peers,
|
|
channels: state.channels,
|
|
|
|
channelModalOpen: channelsSelectors.channelModalOpen(state)
|
|
})
|
|
|
|
export default connect(mapStateToProps, mapDispatchToProps)(Wallet)
|