mirror of
https://github.com/langgenius/dify.git
synced 2026-02-09 23:20:12 -05:00
11 lines
287 B
TypeScript
11 lines
287 B
TypeScript
'use client'
|
|
|
|
import type { NamespaceCamelCase } from './i18next-config'
|
|
import { useTranslation as useTranslationOriginal } from 'react-i18next'
|
|
|
|
export function useTranslation(ns?: NamespaceCamelCase) {
|
|
return useTranslationOriginal(ns)
|
|
}
|
|
|
|
export { useLocale } from '@/context/i18n'
|