Skip to content

Commit 61f2c40

Browse files
committed
feat: Create DisplayComponent in cursorless-org-docs
1 parent f81f142 commit 61f2c40

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)