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