mirror of
https://github.com/langgenius/dify.git
synced 2026-06-22 11:11:09 +08:00
Co-authored-by: zhangx1n <zhangxin@dify.ai> Co-authored-by: yyh <yuanyouhuilyz@gmail.com> Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
14 lines
367 B
TypeScript
14 lines
367 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 max-w-[960px] min-w-0 flex-col gap-y-4 px-6 py-6 sm:px-20 sm:py-8">
|
|
<DeveloperApiSection appInstanceId={appInstanceId} />
|
|
</div>
|
|
)
|
|
}
|