import * as React from 'react'; import './index.less'; interface IProps { children: JSX.Element, title: JSX.Element }; const Tooltip = (props: IProps) => { const {title, children} = props; if(!title) { return children; } return ( {title} {children} ) } export default Tooltip;