Feat: Add ParsedPageCard component #3221 (#4976)

### What problem does this PR solve?

Feat: Add ParsedPageCard component #3221
### Type of change


- [x] New Feature (non-breaking change which adds functionality)
This commit is contained in:
balibabu
2025-02-14 18:12:39 +08:00
committed by GitHub
parent 754d5ea364
commit b4ad565df6
8 changed files with 166 additions and 6 deletions

View File

@ -1,3 +1,10 @@
import ParsedResultPanel from '../parsed-result-panel';
export default function ChunkResult() {
return <div>ChunkResult</div>;
return (
<section className="flex">
<ParsedResultPanel></ParsedResultPanel>
<div className="flex-1"></div>
</section>
);
}