mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-31 09:05:30 +08:00
### 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:
@ -1,10 +1,13 @@
|
||||
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"></div>
|
||||
<div className="flex-1">
|
||||
<ChunkedResultPanel></ChunkedResultPanel>
|
||||
</div>
|
||||
</section>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user