We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 67359b0 commit 155c8e0Copy full SHA for 155c8e0
packages/test-case-component/src/components/shikiComponent.tsx
@@ -29,7 +29,12 @@ export const ShikiComponent: React.FC<{ data: any }> = ({ data }) => {
29
)}
30
</div>
31
32
- <pre>{JSON.stringify(data, null, 2)}</pre>
+ <details>
33
+ <summary>JSON</summary>
34
+ <pre className="max-w-xl overflow-auto">
35
+ {JSON.stringify(data, null, 2)}
36
+ </pre>
37
+ </details>
38
39
);
40
};
0 commit comments