import type { ReactNode } from 'react'; interface TableProps { headers: ReactNode; body: ReactNode; footer?: ReactNode; } export function Table({ headers, body, footer }: TableProps) { return (