1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-23 02:10:12 +01:00
metamask-extension/ui/components/app/user-preferenced-currency-input/user-preferenced-currency-input.container.js

25 lines
712 B
JavaScript
Raw Normal View History

import { connect } from 'react-redux';
import { toggleCurrencySwitch } from '../../../ducks/app/app';
import { getPreferences } from '../../../selectors';
import UserPreferencedCurrencyInput from './user-preferenced-currency-input.component';
2020-02-15 21:34:12 +01:00
const mapStateToProps = (state) => {
const { useNativeCurrencyAsPrimaryCurrency } = getPreferences(state);
return {
useNativeCurrencyAsPrimaryCurrency,
sendInputCurrencySwitched: state.appState.sendInputCurrencySwitched,
};
};
const mapDispatchToProps = (dispatch) => {
return {
2022-03-02 18:57:46 +01:00
onPreferenceToggle: () => dispatch(toggleCurrencySwitch()),
};
};
export default connect(
mapStateToProps,
mapDispatchToProps,
)(UserPreferencedCurrencyInput);