mirror of
https://github.com/infiniflow/ragflow.git
synced 2026-01-01 17:45:28 +08:00
### What problem does this PR solve? Feat: Add ChunkedResultPanel #3221 ### Type of change - [x] New Feature (non-breaking change which adds functionality)
14 lines
359 B
TypeScript
14 lines
359 B
TypeScript
import ChunkedResultPanel from '../chunked-result-panel';
|
|
import ParsedResultPanel from '../parsed-result-panel';
|
|
|
|
export default function ChunkResult() {
|
|
return (
|
|
<section className="flex">
|
|
<ParsedResultPanel></ParsedResultPanel>
|
|
<div className="flex-1">
|
|
<ChunkedResultPanel></ChunkedResultPanel>
|
|
</div>
|
|
</section>
|
|
);
|
|
}
|