mirror of
https://github.com/langgenius/dify.git
synced 2026-07-23 03:58:31 +08:00
13 lines
375 B
TypeScript
13 lines
375 B
TypeScript
'use client'
|
|
|
|
import type { ComponentProps } from 'react'
|
|
import Link from '@/next/link'
|
|
|
|
const createDeploymentGuideHref = '/deployments/create'
|
|
|
|
type CreateDeploymentGuideLinkProps = Omit<ComponentProps<typeof Link>, 'href'>
|
|
|
|
export function CreateDeploymentGuideLink(props: CreateDeploymentGuideLinkProps) {
|
|
return <Link {...props} href={createDeploymentGuideHref} />
|
|
}
|