/* Copyright (C) 2024 Manuel Bustillo*/ import { ArrowPathIcon } from '@heroicons/react/24/outline'; import clsx from 'clsx'; import Image from 'next/image'; import { lusitana } from '@/app/ui/fonts'; import { LatestInvoice } from '@/app/lib/definitions'; export default async function Latestguests({ latestguests, }: { latestguests: LatestInvoice[]; }) { return (

Latest guests

{/* NOTE: Uncomment this code in Chapter 7 */} {/*
{latestguests.map((invoice, i) => { return (
{`${invoice.name}'s

{invoice.name}

{invoice.email}

{invoice.amount}

); })}
*/}

Updated just now

); }