import ReadTenant from "@/components/form/ReadTenant";

interface TenantPageProps {
    params: Promise<{
        id: string
    }>
}

export default async function TenantDetailPage({ params }: TenantPageProps) {
    const { id } = await params
    return (
        <main id="content" className="page-body">
            <div className="container-xl">
                <div className="row row-cards">
                    <ReadTenant tenant_id={id} />
                </div>
            </div>
        </main>
    )
}