Create New Item
×
Item Type
File
Folder
Item Name
×
Search file in folder and subfolders...
File Manager
/
wp-content
/
plugins
/
woocommerce
/
packages
/
woocommerce-blocks
/
assets
/
js
/
base
/
components
/
state-input
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
/** * 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;