From 798530e463ca78cac69fd1c6ca6d82c88cd92101 Mon Sep 17 00:00:00 2001 From: Maximilian Kaske Date: Sun, 6 Oct 2024 19:42:17 +0200 Subject: [PATCH] chore: add data table to playground --- apps/web/src/app/play/page.tsx | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/apps/web/src/app/play/page.tsx b/apps/web/src/app/play/page.tsx index ee77ce1bda..2fa8c39384 100644 --- a/apps/web/src/app/play/page.tsx +++ b/apps/web/src/app/play/page.tsx @@ -5,10 +5,10 @@ import { Gauge, Palette, PanelTop, + Table, } from "lucide-react"; import type { Metadata } from "next"; -import { BackButton } from "@/components/layout/back-button"; import type { CardProps } from "@/components/play/card"; import { Card } from "@/components/play/card"; import { @@ -92,4 +92,11 @@ const playgrounds: CardProps[] = [ "Use the endpoint to return the desired error code for testing purposes.", icon: FileCode, }, + { + href: "https://logs.run", + title: "Data Table Demo", + description: + "Tanstack table with sorting, filtering, and infinite scroll. Combined with cmdk.", + icon: Table, + }, ];