mirror of
https://github.com/langgenius/dify.git
synced 2026-08-03 03:26:35 +08:00
Co-authored-by: zhangx1n <zhangxin@dify.ai> Co-authored-by: yyh <yuanyouhuilyz@gmail.com> Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
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 />
|
|
}
|