mirror of
https://github.com/langgenius/dify.git
synced 2025-07-30 13:00:14 +00:00
13 lines
319 B
TypeScript
13 lines
319 B
TypeScript
![]() |
'use client'
|
||
|
|
||
|
import useDocumentTitle from '@/hooks/use-document-title'
|
||
|
import { useTranslation } from 'react-i18next'
|
||
|
|
||
|
export default function DatasetsLayout({ children }: { children: React.ReactNode }) {
|
||
|
const { t } = useTranslation()
|
||
|
useDocumentTitle(t('common.menus.apps'))
|
||
|
return (<>
|
||
|
{children}
|
||
|
</>)
|
||
|
}
|