From a90b5618409689a6455214cb83129db6a5ab9740 Mon Sep 17 00:00:00 2001 From: Jimmy Jia Date: Mon, 19 Oct 2015 10:00:22 -0400 Subject: [PATCH] Fix tooltip in copy example --- docs/examples/TooltipInCopy.js | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/docs/examples/TooltipInCopy.js b/docs/examples/TooltipInCopy.js index ed981bbe08..c484239a66 100644 --- a/docs/examples/TooltipInCopy.js +++ b/docs/examples/TooltipInCopy.js @@ -1,9 +1,12 @@ const LinkWithTooltip = React.createClass({ render() { - let tooltip = {this.props.tooltip}; + let tooltip = {this.props.tooltip}; return ( - + {this.props.children} );