const FakeSelect: React.FC< Readonly<{ innerText: string; }> > = ({ innerText }) => { return (

{innerText}

); }; export default FakeSelect;