import React from "react"; type TableProps = { headers: string[]; rows: React.ReactNode[][]; }; export default function Table({ headers, rows }: TableProps) { return (
{headers.map((header, index) => ( ))} {rows.map((row, rowIndex) => ( {row.map((cell, cellIndex) => ( ))} ))}
{header}
{cell}
); }