import React from 'react'; import { useTranslation } from 'react-i18next'; const TestTranslation = () => { const { t, i18n } = useTranslation(); return (
Current language: {i18n.language}
Dashboard translation: {t('navigation.dashboard')}
Loading translation: {t('common.loading')}
Error translation: {t('common.error')}