File size: 276 Bytes
831f7e7
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
import { useContext } from 'react';
import { LanguageContext } from '@/contexts/LanguageContext';
import { translations } from '@/i18n/translations';

export const useTranslation = () => {
  const { language } = useContext(LanguageContext);
  return translations[language];
};