17 lines
425 B
TypeScript
17 lines
425 B
TypeScript
|
/**
|
||
|
* External dependencies
|
||
|
*/
|
||
|
import { ALLOWED_COUNTRIES } from '@woocommerce/block-settings';
|
||
|
|
||
|
/**
|
||
|
* Internal dependencies
|
||
|
*/
|
||
|
import CountryInput from './country-input';
|
||
|
import type { CountryInputProps } from './CountryInputProps';
|
||
|
|
||
|
const BillingCountryInput = ( props: CountryInputProps ): JSX.Element => {
|
||
|
return <CountryInput countries={ ALLOWED_COUNTRIES } { ...props } />;
|
||
|
};
|
||
|
|
||
|
export default BillingCountryInput;
|