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 + + +
) }