You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index-old.tsx 245B

12345678910
  1. import ParsedResultPanel from '../parsed-result-panel';
  2. export default function ParsedResult() {
  3. return (
  4. <section className="flex">
  5. <div className="flex-1"></div>
  6. <ParsedResultPanel></ParsedResultPanel>
  7. </section>
  8. );
  9. }