import React from 'react'; export default class Tooltip extends React.Component { render() { return (
{this.props.tip}
{this.props.children}
); } }