Files
bitburner-src/src/ui/React/MoneyRate.tsx
T

8 lines
239 B
TypeScript

import React from "react";
import { formatMoney } from "../formatNumber";
import { Money } from "./Money";
export function MoneyRate({ money }: { money: number }): JSX.Element {
return <Money money={`${formatMoney(money)} / sec`} />;
}