import { default as ReachTooltip } from '@reach/tooltip'; import React from 'react'; import './tooltip.css'; interface ITooltip { text: string, } const Tooltip: React.FC = ({ children, text, }) => { return ( {children} ); }; export default Tooltip;