dify/web/app/(commonLayout)/deployments/page.tsx
Stephen Zhou 663818f411
tweaks
2026-04-29 23:26:07 +08:00

13 lines
362 B
TypeScript

'use client'
import { useTranslation } from 'react-i18next'
import DeploymentsMain from '@/features/deployments/list'
import useDocumentTitle from '@/hooks/use-document-title'
const DeploymentsPage = () => {
const { t } = useTranslation('deployments')
useDocumentTitle(t('documentTitle.list'))
return <DeploymentsMain />
}
export default DeploymentsPage