mirror of
https://github.com/langgenius/dify.git
synced 2026-05-13 08:57:28 +08:00
11 lines
346 B
TypeScript
11 lines
346 B
TypeScript
'use client'
|
|
import { useTranslation } from 'react-i18next'
|
|
import { DeploymentsList } from '@/features/deployments/list'
|
|
import useDocumentTitle from '@/hooks/use-document-title'
|
|
|
|
export default function DeploymentsPage() {
|
|
const { t } = useTranslation('deployments')
|
|
useDocumentTitle(t('documentTitle.list'))
|
|
return <DeploymentsList />
|
|
}
|