File "billing-state-input.tsx"

Full Path: /home/warrior1/public_html/wp-content-20241001222009/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/state-input/billing-state-input.tsx
File size: 400 bytes
MIME-type: text/x-java
Charset: utf-8

/**
 * External dependencies
 */
import { ALLOWED_STATES } from '@woocommerce/block-settings';

/**
 * Internal dependencies
 */
import StateInput from './state-input';
import type { StateInputProps } from './StateInputProps';

const BillingStateInput = ( props: StateInputProps ): JSX.Element => {
	return <StateInput states={ ALLOWED_STATES } { ...props } />;
};

export default BillingStateInput;