mirror of
https://github.com/langgenius/dify.git
synced 2026-08-03 11:46:37 +08:00
14 lines
406 B
TypeScript
14 lines
406 B
TypeScript
'use client'
|
|
import * as React from 'react'
|
|
import { useTranslation } from 'react-i18next'
|
|
import DeploymentsMain from '@/app/components/deployments'
|
|
import useDocumentTitle from '@/hooks/use-document-title'
|
|
|
|
const DeploymentsPage = () => {
|
|
const { t } = useTranslation('deployments')
|
|
useDocumentTitle(t('documentTitle.list'))
|
|
return <DeploymentsMain />
|
|
}
|
|
|
|
export default React.memo(DeploymentsPage)
|