From 8c6b19a96e27cef1431761a2865e60630b5b40a2 Mon Sep 17 00:00:00 2001 From: Manuel Bustillo Date: Sun, 11 Aug 2024 13:14:16 +0200 Subject: [PATCH] Add stripped rows to the table --- app/ui/guests/table.tsx | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/app/ui/guests/table.tsx b/app/ui/guests/table.tsx index 2b57e4e..7a31193 100644 --- a/app/ui/guests/table.tsx +++ b/app/ui/guests/table.tsx @@ -16,6 +16,16 @@ export default async function guestsTable() { name: 'Jane Doe', email: 'jane@bar.com', }, + { + id: '3', + name: 'John Doe', + email: 'foo@bar.com' + }, + { + id: '4', + name: 'Jane Doe', + email: 'jane@bar.com', + }, ]; return ( @@ -36,7 +46,7 @@ export default async function guestsTable() { {guests.map((guest) => ( - + {guest.name}