mirror of
https://github.com/langgenius/dify.git
synced 2026-08-01 01:49:30 +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>
13 lines
375 B
TypeScript
13 lines
375 B
TypeScript
'use client'
|
|
|
|
import { useTranslation } from 'react-i18next'
|
|
import { CreateDeploymentGuide } from '@/features/deployments/create-guide'
|
|
import useDocumentTitle from '@/hooks/use-document-title'
|
|
|
|
export default function CreateDeploymentPage() {
|
|
const { t } = useTranslation('deployments')
|
|
useDocumentTitle(t('documentTitle.create'))
|
|
|
|
return <CreateDeploymentGuide />
|
|
}
|