File "shipping-state-input.js"

Full Path: /home/vantageo/public_html/cache/cache/cache/cache/cache/cache/.wp-cli/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/state-input/shipping-state-input.js
File size: 535 bytes
MIME-type: text/x-java
Charset: utf-8

/**
 * External dependencies
 */
import PropTypes from 'prop-types';
import { getSetting } from '@woocommerce/settings';

/**
 * Internal dependencies
 */
import StateInput from './state-input.js';

const ShippingStateInput = ( props ) => {
	return (
		<StateInput
			states={ getSetting( 'shippingStates', {} ) }
			{ ...props }
		/>
	);
};

ShippingStateInput.propTypes = {
	onChange: PropTypes.func.isRequired,
	className: PropTypes.string,
	label: PropTypes.string,
	value: PropTypes.string,
};

export default ShippingStateInput;