import { useRef } from "react"; import HistoryRow from "./history/HistoryRow"; export default function HistoryList(props: any) { return (
{props.items.map((i: any) => { let h = props.history[i.index]; return (
); })}
); }