mirror of
https://github.com/langgenius/dify.git
synced 2026-08-01 09:50:50 +08:00
16 lines
464 B
TypeScript
16 lines
464 B
TypeScript
'use client'
|
|
|
|
import { DetailSidebarFrame } from '@/app/components/detail-sidebar'
|
|
import { DeploymentDetailSection, DeploymentDetailTop } from './deployment-sidebar'
|
|
|
|
export function DeploymentDetailSidebar() {
|
|
return (
|
|
<DetailSidebarFrame
|
|
renderTop={({ expand, onToggle }) => (
|
|
<DeploymentDetailTop expand={expand} onToggle={onToggle} />
|
|
)}
|
|
renderSection={({ expand }) => <DeploymentDetailSection expand={expand} />}
|
|
/>
|
|
)
|
|
}
|