woocommerce/plugins/woocommerce-blocks/assets/js/base/components/country-input/shipping-country-input.tsx

17 lines
424 B
TypeScript

/**
* External dependencies
*/
import { SHIPPING_COUNTRIES } from '@woocommerce/block-settings';
/**
* Internal dependencies
*/
import CountryInput from './country-input';
import { CountryInputProps } from './CountryInputProps';
const ShippingCountryInput = ( props: CountryInputProps ): JSX.Element => {
return <CountryInput countries={ SHIPPING_COUNTRIES } { ...props } />;
};
export default ShippingCountryInput;