mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-25 03:20:23 +01:00
12 lines
323 B
JavaScript
12 lines
323 B
JavaScript
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)
|