mirror of
https://github.com/langgenius/dify.git
synced 2026-08-01 18:30:48 +08:00
15 lines
469 B
TypeScript
15 lines
469 B
TypeScript
'use client'
|
|
|
|
import { DetailSidebarFrame } from '@/app/components/detail-sidebar'
|
|
import DatasetDetailSection from './dataset-detail-section'
|
|
import { DatasetDetailTop } from './dataset-detail-top'
|
|
|
|
export function DatasetDetailSidebar() {
|
|
return (
|
|
<DetailSidebarFrame
|
|
renderTop={({ expand, onToggle }) => <DatasetDetailTop expand={expand} onToggle={onToggle} />}
|
|
renderSection={({ expand }) => <DatasetDetailSection expand={expand} />}
|
|
/>
|
|
)
|
|
}
|