aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/transaction-breakdown/transaction-breakdown.container.js
blob: ed2708e037b607758b5b664432155be85462dd28 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
import { connect } from 'react-redux'
import TransactionBreakdown from './transaction-breakdown.component'
import { getNativeCurrency } from '../../selectors'

const mapStateToProps = (state) => {
  return {
    nativeCurrency: getNativeCurrency(state),
  }
}

export default connect(mapStateToProps)(TransactionBreakdown)