bitburner-src/src/ui/React/StatsTable.tsx

24 lines
772 B
TypeScript
Raw Normal View History

2021-03-16 10:42:12 +01:00
import * as React from "react";
2021-06-18 22:22:12 +02:00
export function StatsTable(rows: any[][], title?: string): React.ReactElement {
2021-03-16 10:42:12 +01:00
let titleElem = <></>
if (title) {
titleElem = <><h2><u>{title}</u></h2><br /></>;
}
return (<>
{titleElem}
<table>
<tbody>
{rows.map((row: any[]) => {
return <tr key={row[0]}>
{row.map((elem: any, i: number) => {
let style = {};
if (i !== 0) style = {textAlign: 'right', paddingLeft: '.25em'};
2021-03-16 10:42:12 +01:00
return <td key={i} style={style}>{elem}</td>
})}
</tr>
})}
</tbody>
</table>
</>);
}