JSFiddle - React, Tailwind, and code Playground

HTML

<div class="title">title</div>
<div class="title2">title</div>

JavaScript

$( document ).ready(function() {
    $('.title').html("new title here");
    document.getElementsByClassName("title2")[0].innerHTML = "new title here"
});