mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 10:30:04 +01:00
27 lines
735 B
JavaScript
27 lines
735 B
JavaScript
import { connect } from 'react-redux';
|
|
import PropTypes from 'prop-types';
|
|
import { getPreferences } from '../../../selectors';
|
|
import UserPreferencedTokenInput from './user-preferenced-token-input.component';
|
|
|
|
const mapStateToProps = (state) => {
|
|
const { useNativeCurrencyAsPrimaryCurrency } = getPreferences(state);
|
|
|
|
return {
|
|
useNativeCurrencyAsPrimaryCurrency,
|
|
};
|
|
};
|
|
|
|
const UserPreferencedTokenInputContainer = connect(mapStateToProps)(
|
|
UserPreferencedTokenInput,
|
|
);
|
|
|
|
UserPreferencedTokenInputContainer.propTypes = {
|
|
token: PropTypes.shape({
|
|
address: PropTypes.string.isRequired,
|
|
decimals: PropTypes.number,
|
|
symbol: PropTypes.string,
|
|
}).isRequired,
|
|
};
|
|
|
|
export default UserPreferencedTokenInputContainer;
|