bitburner-src/src/ui/React/MoneyRate.tsx
2022-03-06 05:05:55 +01:00

8 lines
258 B
TypeScript

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