Children
Using children for setting the ReactTooltip content.
Using children as content
When using children as content, the content prop and the data-tooltip-content attribute will take priority.
This is useful for setting a placeholder for the tooltip content.
import { Tooltip } from 'react-tooltip';
<a data-tooltip-id="my-tooltip">◕‿‿◕</a>
<Tooltip id="my-tooltip">
<div>
<h3>This is a very interesting header</h3>
<p>Here's some interesting stuff:</p>
<ul>
<li>Some</li>
<li>Interesting</li>
<li>Stuff</li>
</ul>
</div>
</Tooltip>
◕‿‿◕
