() => {const [country, setCountry] = React.useState("");return (<Selectvalue={country}placeholder="Choose your country"options={[{label: "Algeria",value: "dz",},{label: "Bolivia",value: "bo",},{label: "Croatia",value: "hr",},{label: "Indonesia",value: "id",},{label: "Mexico",value: "mx",},]}label="Nationality"onChange={(event) => setCountry(event.currentTarget.value)}help="Choose the country where you hold a passport."/>);};