import React from 'react'; export default class Tooltip extends React.Component { static TTProps = [ 'id', 'placement', 'positionLeft', 'positionTop', 'arrowOffsetLeft', 'arrowOffsetTop' ]; render() { const ttprops = _.pick(this.props, ...this.TTProps); const tooltip = {this.props.content} ; return ( {this.props.children} ); } }