From f028fd3aaad47deefba62c5787b497030f727d7d Mon Sep 17 00:00:00 2001
From: Gerzon05
Date: Tue, 26 Mar 2024 23:16:28 -0500
Subject: [PATCH] fix(nextjs): add component table (#17)
---
test/with-nextjs/app/page.tsx | 29 ++++++++++++++++++++++++++++-
1 file changed, 28 insertions(+), 1 deletion(-)
diff --git a/test/with-nextjs/app/page.tsx b/test/with-nextjs/app/page.tsx
index 6fc265d..a3eb24b 100644
--- a/test/with-nextjs/app/page.tsx
+++ b/test/with-nextjs/app/page.tsx
@@ -1,5 +1,5 @@
import Image from 'next/image'
-import { AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogTitle, AlertDialogTrigger, Avatar, AvatarFallback, AvatarImage, Badge, Button } from '@design-system/react'
+import { AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogTitle, AlertDialogTrigger, Avatar, AvatarFallback, AvatarImage, Badge, Button, Table, TableBody, TableCaption, TableCell, TableHead, TableHeader, TableRow } from '@design-system/react'
export default function Home() {
return (
@@ -148,6 +148,33 @@ export default function Home() {
+
+ A list of your recent invoices.
+
+
+ Invoice
+ Status
+ Method
+ Amount
+
+
+
+
+ INV001
+ Paid
+ Credit Card
+ $250.00
+
+
+
+
+ INV001
+ Paid
+ Credit Card
+ $250.00
+
+
+
)
}