"use client" import { Table, TableBody, TableCell, TableHead, TableHeader, TableRow } from "@/components/ui/table" import type { Cliente } from "@/lib/supabase" interface CustomerTableProps { customers: Cliente[] } export function CustomerTable({ customers }: CustomerTableProps) { if (customers.length === 0) { return (