mirror of
https://github.com/langgenius/dify.git
synced 2026-07-24 04:31:07 +08:00
13 lines
385 B
TypeScript
13 lines
385 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 />
|
|
}
|