/** * External dependencies */ import PropTypes from 'prop-types'; import { ALLOWED_COUNTRIES } from '@woocommerce/block-settings'; /** * Internal dependencies */ import CountryInput from './country-input.js'; const BillingCountryInput = ( props ) => { return ; }; BillingCountryInput.propTypes = { onChange: PropTypes.func.isRequired, className: PropTypes.string, label: PropTypes.string, value: PropTypes.string, }; export default BillingCountryInput;