import React from 'react' import { useTranslation } from 'react-i18next' import { RsvpReader } from './components/RsvpReader' import { SearchBar } from './components/SearchBar' import './App.css' import { LangSelect } from './components/LangSelect' export const App = () => { const { t } = useTranslation() return ( <>

{t('title')}

) }