Feat: Add ChunkedResultPanel #3221 (#5085)

### What problem does this PR solve?

Feat: Add ChunkedResultPanel #3221

### Type of change


- [x] New Feature (non-breaking change which adds functionality)
This commit is contained in:
balibabu
2025-02-18 17:53:51 +08:00
committed by GitHub
parent 3356de55ed
commit 18e43831bc
7 changed files with 69 additions and 10 deletions

View File

@ -20,8 +20,8 @@ const list = new Array(10).fill({
export default function ParsedResultPanel() {
return (
<div className="flex-1 py-6 border-l space-y-6">
<ChunkToolbar></ChunkToolbar>
<div className="space-y-6 overflow-auto max-h-[94vh] px-9">
<ChunkToolbar text="Parsed results"></ChunkToolbar>
<div className="space-y-6 overflow-auto max-h-[87vh] px-9">
{list.map((x, idx) => (
<ParsedPageCard
key={idx}