mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-18 16:07:10 +00:00
14 lines
231 B
TypeScript
14 lines
231 B
TypeScript
|
|
import React from 'react';
|
||
|
|
|
||
|
|
import { Value } from './styles';
|
||
|
|
|
||
|
|
const ValueGraph = ({ value }: ValueGraphProps): JSX.Element => (
|
||
|
|
<Value>{value}</Value>
|
||
|
|
);
|
||
|
|
|
||
|
|
interface ValueGraphProps {
|
||
|
|
value: string;
|
||
|
|
}
|
||
|
|
|
||
|
|
export default ValueGraph;
|