1
0
Fork 0
freesewing/sites/shared/hooks/use-language.mjs

8 lines
145 B
JavaScript
Raw Normal View History

2023-03-24 21:30:04 +01:00
import { useTranslation } from 'next-i18next'
export const useLanguage = () => {
const { i18n } = useTranslation()
return i18n?.language
2023-03-24 21:30:04 +01:00
}