JSFiddle - React, Tailwind, and code Playground
HTML
<a id="add" href="#">Добавить товар</a>
JavaScript
$('#add').hover(function() {
$(this).text('Добавить +1 товар');
});
<a id="add" href="#">Добавить товар</a>
$('#add').hover(function() {
$(this).text('Добавить +1 товар');
});