mirror of
https://github.com/langgenius/dify.git
synced 2026-07-28 23:59:34 +08:00
12 lines
282 B
TypeScript
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>
|
|
)
|
|
}
|