<Link href="/company/add" >
<a title="My New Title" data-toggle='tooltip' className="btn btn-primary">My Link</a>
</Link>
Trying to integrate a Tippy tooltip component with a Nextjs Link doesn't seem to be straightforward. The code below demonstrates the attempt, but unfortunately it does not work as expected.
<Tippy content="My Tooltip">
<Link href="/company/add" >
<a title="My New Title" data-toggle='tooltip' className="btn btn-primary">My Link</a>
</Link>
</Tippy>
If you have successfully achieved this integration before, your assistance would be greatly appreciated. Alternatively, are there any other tooltips that seamlessly work with NextJs?