17 lines
424 B
TypeScript
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;
|