import React from 'react';
import { SText } from '../../common/s-components/typography/s-text';

type TProps = {};

export const Graph: React.FC<TProps> = () => {
  return (
    <>
      <SText>Graph</SText>
    </>
  );
};
