File "billing-country-input.tsx"
Full path: /home/kosmetik/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/country-input/billing-country-input.tsx
File
size: 425 B
MIME-type: text/plain
Charset: utf-8
Download Open Edit Advanced Editor Back
/**
* 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;