() => {const [choice, setChoice] = React.useState("");return (<PopoverrenderInPortal={false}content={<><ListChoicetitle="Oslo, Norway"onClick={(event) => setChoice(event.currentTarget.innerText)}/><ListChoicetitle="Prague, Czechia"onClick={(event) => setChoice(event.currentTarget.innerText)}/><ListChoicetitle="Milan, Italy"onClick={(event) => setChoice(event.currentTarget.innerText)}/></>}noPadding><InputField label="To" inlineLabel value={choice} /></Popover>);};