mirror of
https://github.com/langgenius/dify.git
synced 2026-07-23 20:18:40 +08:00
11 lines
356 B
TypeScript
11 lines
356 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 />
|
|
}
|