woocommerce/packages/woocommerce-blocks/assets/js/base/components/state-input/billing-state-input.tsx
2021-12-10 12:03:04 +00:00

17 lines
400 B
TypeScript

/**
* 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;