mirror of
https://github.com/langgenius/dify.git
synced 2026-01-14 06:07:33 +08:00
11 lines
282 B
TypeScript
11 lines
282 B
TypeScript
'use client'
|
|
|
|
import type { NamespaceCamelCase } from './resources'
|
|
import { useTranslation as useTranslationOriginal } from 'react-i18next'
|
|
|
|
export function useTranslation(ns?: NamespaceCamelCase) {
|
|
return useTranslationOriginal(ns)
|
|
}
|
|
|
|
export { useLocale } from '@/context/i18n'
|