Files
ragflow/web/src/pages/dataset/index.tsx
balibabu 535b15ace9 Feat: Add dataset sidebar #3221 (#3683)
### What problem does this PR solve?

Feat: Add dataset sidebar #3221

### Type of change


- [x] New Feature (non-breaking change which adds functionality)
2024-11-27 18:06:05 +08:00

14 lines
269 B
TypeScript

import { Outlet } from 'umi';
import { SideBar } from './sidebar';
export default function DatasetWrapper() {
return (
<div className="text-foreground flex">
<SideBar></SideBar>
<div className="p-6">
<Outlet />
</div>
</div>
);
}