mirror of https://github.com/langgenius/dify.git
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}
|
|
</>)
|
|
}
|