mirror of
https://github.com/langgenius/dify.git
synced 2026-07-31 01:09:32 +08:00
15 lines
441 B
TypeScript
15 lines
441 B
TypeScript
'use client'
|
|
|
|
import { DetailSidebarFrame } from '@/app/components/detail-sidebar'
|
|
import AppDetailSection from './app-detail-section'
|
|
import { AppDetailTop } from './app-detail-top'
|
|
|
|
export function AppDetailSidebar() {
|
|
return (
|
|
<DetailSidebarFrame
|
|
renderTop={({ expand, onToggle }) => <AppDetailTop expand={expand} onToggle={onToggle} />}
|
|
renderSection={({ expand }) => <AppDetailSection expand={expand} />}
|
|
/>
|
|
)
|
|
}
|