import React from 'react'; import { Value } from './styles'; function ValueGraph({ value }: ValueGraphProps): JSX.Element { return {value}; } interface ValueGraphProps { value: string; } export default ValueGraph;