mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-04-27 11:27:04 +02:00
7 lines
260 B
TypeScript
7 lines
260 B
TypeScript
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`} />;
|
|
} |