aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/pages/send/send-content/send-from-row/send-from-row.container.js
blob: fe3ac9aa19f729c5cd7516ec65f68d79198c45d1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
import { connect } from 'react-redux'
import { getSendFromObject } from '../../send.selectors.js'
import SendFromRow from './send-from-row.component'

function mapStateToProps (state) {
  return {
    from: getSendFromObject(state),
  }
}

export default connect(mapStateToProps)(SendFromRow)