dify/web/features/deployments/detail/api-tokens/index.tsx
Stephen Zhou a14310fc62
refactor(web): organize deployment feature state (#38065)
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
2026-06-27 07:34:46 +00:00

12 lines
282 B
TypeScript

'use client'
import { DeveloperApiSection } from './api-token-management/section'
export function DeploymentApiTokens() {
return (
<div className="flex w-full max-w-[960px] min-w-0 flex-col gap-y-4 px-6 py-6 sm:px-20 sm:py-8">
<DeveloperApiSection />
</div>
)
}