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