import { formatNumericValue } from 'utils/numbers' import { StatusDot } from './Tps' import { rpcAlertThreshold, rpcWarningThreshold } from './StatusBar' const RpcPing = ({ rpcPing }: { rpcPing: number }) => { return (
{formatNumericValue(rpcPing, 0)} MS
) } export default RpcPing