mirror of
https://github.com/langgenius/dify.git
synced 2026-07-21 18:58:35 +08:00
13 lines
373 B
TypeScript
13 lines
373 B
TypeScript
'use client'
|
|
|
|
import type { PropsWithChildren } from 'react'
|
|
import { useTranslation } from 'react-i18next'
|
|
import useDocumentTitle from '@/hooks/use-document-title'
|
|
|
|
export default function IntegrationsLayout({ children }: PropsWithChildren) {
|
|
const { t } = useTranslation()
|
|
useDocumentTitle(t(($) => $['mainNav.integrations'], { ns: 'common' }))
|
|
|
|
return children
|
|
}
|