mirror of
https://github.com/langgenius/dify.git
synced 2026-07-27 06:58:30 +08:00
12 lines
257 B
TypeScript
12 lines
257 B
TypeScript
'use client'
|
|
|
|
import { DeveloperApiSection } from './section'
|
|
|
|
export function DeveloperApiTab() {
|
|
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>
|
|
)
|
|
}
|