mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 11:01:41 +01:00
14 lines
420 B
JavaScript
14 lines
420 B
JavaScript
import { connect } from 'react-redux'
|
|
import UserPreferencedCurrencyInput from './user-preferenced-currency-input.component'
|
|
import { preferencesSelector } from '../../selectors'
|
|
|
|
const mapStateToProps = state => {
|
|
const { useNativeCurrencyAsPrimaryCurrency } = preferencesSelector(state)
|
|
|
|
return {
|
|
useNativeCurrencyAsPrimaryCurrency,
|
|
}
|
|
}
|
|
|
|
export default connect(mapStateToProps)(UserPreferencedCurrencyInput)
|