mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-05-06 07:37:56 +02:00
8 lines
239 B
TypeScript
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`} />;
|
|
}
|