JSFiddle - React, Tailwind, and code Playground
HTML
<div id="result"></div>
CSS
#result {border:1px solid gray}
JavaScript
$(document).ready(function(){
$('#result').load('/ p#name', function(result) {
var obj = $(this).find('p#name'), html = obj.html();
obj.css({'font-size':40});
$(this).append($('<div>').text(html));
});
});