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

7 lines
260 B
TypeScript
Raw Normal View History

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