import React, { useState, useEffect } from "react"; import { formatNumber, convertTimeMsToTimeElapsedString, } from "../../../utils/StringHelperFunctions"; import { OperationElem } from "./OperationElem"; import { Operation } from "../Operation"; interface IProps { bladeburner: any; } export function OperationList(props: IProps): React.ReactElement { const names = Object.keys(props.bladeburner.operations); const operations = props.bladeburner.operations; return (<> {names.map((name: string) =>
  • )} ); }