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

Translation Test

Current language: {i18n.language}

Dashboard translation: {t('navigation.dashboard')}

Loading translation: {t('common.loading')}

Error translation: {t('common.error')}

); }; export default TestTranslation;