mirror of
https://github.com/weaveworks/scope.git
synced 2026-03-05 11:11:13 +00:00
14 lines
296 B
JavaScript
14 lines
296 B
JavaScript
import React from 'react';
|
|
|
|
import { formatMetric } from '../../utils/string-utils';
|
|
|
|
function NodeDetailsTableNodeMetric(props) {
|
|
return (
|
|
<td className="node-details-table-node-metric">
|
|
{formatMetric(props.value, props)}
|
|
</td>
|
|
);
|
|
}
|
|
|
|
export default NodeDetailsTableNodeMetric;
|