woocommerce/packages/woocommerce-blocks/assets/js/base/components/state-input/shipping-state-input.tsx

17 lines
404 B
TypeScript
Raw Normal View History

2021-12-10 12:03:04 +00:00
/**
* External dependencies
*/
import { SHIPPING_STATES } from '@woocommerce/block-settings';
/**
* Internal dependencies
*/
import StateInput from './state-input';
import type { StateInputProps } from './StateInputProps';
const ShippingStateInput = ( props: StateInputProps ): JSX.Element => {
return <StateInput states={ SHIPPING_STATES } { ...props } />;
};
export default ShippingStateInput;