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