/** * Text (p Element) with Tooltip */ import * as React from "react"; export interface IParagraphWithTooltipProps { style?: object; content: JSX.Element; tooltip: string; } export class ParagraphWithTooltip extends React.Component { render() { return (

{this.props.content} {this.props.tooltip}

) } }