import { ReactNode } from 'react' interface TableProps { headers: string[] rows: (string | ReactNode)[][] } export function Table({ headers, rows }: TableProps) { const columnCount = headers.length return (