mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-12-03 13:03:48 +01:00
8 lines
310 B
TypeScript
8 lines
310 B
TypeScript
import React from "react";
|
|
import { numeralWrapper } from "../numeralFormat";
|
|
import { Reputation } from "./Reputation";
|
|
|
|
export function ReputationRate({ reputation }: { reputation: number }): React.ReactElement {
|
|
return <Reputation reputation={`${numeralWrapper.formatReputation(reputation)} / sec`} />;
|
|
}
|