// @flow import * as React from 'react'; import autobind from 'autobind-decorator'; import Tooltip from './tooltip'; type Props = { children: React.Node, // Optional position?: string, className?: string, style?: Object, info?: boolean }; @autobind class HelpTooltip extends React.PureComponent { render () { const {children, className, style, info} = this.props; return ( ); } } export default HelpTooltip;