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 f81f142 commit 61f2c40Copy full SHA for 61f2c40
1 file changed
packages/cursorless-org-docs/src/docs/user/languages/components/DisplayComponent.tsx
@@ -0,0 +1,14 @@
1
+import React from "react";
2
+import { ShikiComponentList } from "@cursorless/test-case-component";
3
+
4
+interface Props {
5
+ languageId: string;
6
+}
7
8
+export function DisplayComponent({ languageId }: Props) {
9
+ return (
10
+ <>
11
+ <ShikiComponentList language={languageId} />
12
+ </>
13
+ );
14
0 commit comments