+
+ {item.label}
+
+ {item.docId ? (
+
+ ) : item.description ? (
+
{item.description}
+ ) : null}
+
+
+ );
+}
\ No newline at end of file
diff --git a/docs/src/components/CardLinkGrid.tsx b/docs/src/components/CardLinkGrid.tsx
new file mode 100644
index 00000000000..e51c4849889
--- /dev/null
+++ b/docs/src/components/CardLinkGrid.tsx
@@ -0,0 +1,12 @@
+import { CardLink, Item } from "./CardLink";
+
+export function CardLinkGrid(props: { items: Item[] }) {
+ const { items } = props;
+ return (
+