import React from "react"; import { Table, TableCell } from "./Table"; import TableBody from "@mui/material/TableBody"; import { Table as MuiTable } from "@mui/material"; import TableRow from "@mui/material/TableRow"; import Typography from "@mui/material/Typography"; interface IProps { rows: any[][]; title?: string; wide?: boolean; } export function StatsTable({ rows, title, wide }: IProps): React.ReactElement { const T = wide ? MuiTable : Table; return ( <> {title && {title}} {rows.map((row: any[], i: number) => ( {row.map((elem: any, i: number) => ( {elem} ))} ))} ); }