mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
25 lines
712 B
JavaScript
25 lines
712 B
JavaScript
import { connect } from 'react-redux';
|
|
import { toggleCurrencySwitch } from '../../../ducks/app/app';
|
|
import { getPreferences } from '../../../selectors';
|
|
import UserPreferencedCurrencyInput from './user-preferenced-currency-input.component';
|
|
|
|
const mapStateToProps = (state) => {
|
|
const { useNativeCurrencyAsPrimaryCurrency } = getPreferences(state);
|
|
|
|
return {
|
|
useNativeCurrencyAsPrimaryCurrency,
|
|
sendInputCurrencySwitched: state.appState.sendInputCurrencySwitched,
|
|
};
|
|
};
|
|
|
|
const mapDispatchToProps = (dispatch) => {
|
|
return {
|
|
onPreferenceToggle: () => dispatch(toggleCurrencySwitch()),
|
|
};
|
|
};
|
|
|
|
export default connect(
|
|
mapStateToProps,
|
|
mapDispatchToProps,
|
|
)(UserPreferencedCurrencyInput);
|