Skip to content

Commit d700e38

Browse files
committed
wip: Create inital component to render shiki code blocks
1 parent 5e39efb commit d700e38

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
import * as React from "react";
2+
3+
4+
5+
export const ShikiComponent: React.FC<{ data: any }> = ({ data }) => {
6+
7+
return (
8+
<pre>
9+
{JSON.stringify(data, null, 2)}
10+
</pre>
11+
);
12+
};

0 commit comments

Comments
 (0)