mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-08 20:42:30 +08:00
### What problem does this PR solve? Refactor Datasets UI #3221. ### Type of change - [X] New Feature (non-breaking change which adds functionality)
11 lines
245 B
TypeScript
11 lines
245 B
TypeScript
import ParsedResultPanel from '../parsed-result-panel';
|
|
|
|
export default function ParsedResult() {
|
|
return (
|
|
<section className="flex">
|
|
<div className="flex-1"></div>
|
|
<ParsedResultPanel></ParsedResultPanel>
|
|
</section>
|
|
);
|
|
}
|