import React, { useTranslation } from 'react-i18next'; export const Home = () => { const { t } = useTranslation(); return

{t('greeting')}

; };