mirror of
https://github.com/infiniflow/ragflow.git
synced 2026-02-02 08:35:08 +08:00
### What problem does this PR solve? Feat: Add ParsedPageCard component #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>
|
|
);
|
|
}
|