woocommerce/plugins/woocommerce-blocks/assets/js/base/components/county-input/billing-county-input.js

24 lines
519 B
JavaScript
Raw Normal View History

/**
* External dependencies
*/
import PropTypes from 'prop-types';
import { ALLOWED_COUNTIES } from '@woocommerce/block-settings';
/**
* Internal dependencies
*/
import CountyInput from './county-input.js';
const BillingCountyInput = ( props ) => {
return <CountyInput counties={ ALLOWED_COUNTIES } { ...props } />;
};
BillingCountyInput.propTypes = {
onChange: PropTypes.func.isRequired,
className: PropTypes.string,
label: PropTypes.string,
value: PropTypes.string,
};
export default BillingCountyInput;