import FormControl from '@mui/material/FormControl'; import {Enum_Event_Lang} from '../../generated/graphql'; import Select from '@mui/material/Select'; import MenuItem from '@mui/material/MenuItem'; import {useTranslation} from 'react-i18next'; type Props = { value: Enum_Event_Lang; onChange: (lang: Enum_Event_Lang) => void; }; const LangSelector = (props: Props) => { const {t} = useTranslation(); return ( ); }; export default LangSelector;