JSFiddle - React, Tailwind, and code Playground
HTML
<p>This is a paragraph.</p>
<button>Test jQuery</button>
JavaScript
// jquery noConflict() method
var jq = $.noConflict();
jq("button").click(function () {
jq("p").text("jQuery is still working!");
});