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

{this.props.text} {this.props.tooltip}

) } }