Spaces:
Running
Running
File size: 593 Bytes
d60fc1c 8fe4e41 45b3519 8fe4e41 d60fc1c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
export default function Table(props: any) {
return (
<table id={props.name || "table"}>
<thead>
<tr>
{props.columns.map((column: string) => (
<th key={column}>{column}</th>
))}
</tr>
</thead>
<tbody>
{props.data.map((row: { [column: string]: any }, i: number) => (
<tr key={`row-${i}`}>
{props.columns.map((_column: string, j: number) => (
<td key={`cell ${i}, ${j}`}>{JSON.stringify(row[j])}</td>
))}
</tr>
))}
</tbody>
</table>
);
}
|