Files
dify/web/features/deployments/detail/developer-api-tab.tsx
Stephen Zhou 577a2f272f update
2026-05-22 12:03:34 +08:00

14 lines
344 B
TypeScript

'use client'
import { DeveloperApiSection } from './settings-tab/access/developer-api-section'
export function DeveloperApiTab({ appInstanceId }: {
appInstanceId: string
}) {
return (
<div className="flex w-full min-w-0 flex-col gap-y-5 px-6 py-6 sm:py-8">
<DeveloperApiSection appInstanceId={appInstanceId} />
</div>
)
}