JSFiddle - React, Tailwind, and code Playground
HTML
<script src="https://raw.github.com/seaofclouds/tweet/master/tweet/jquery.tweet.js"></script>
<link rel="stylesheet" href="https://raw.github.com/seaofclouds/tweet/master/tweet/jquery.tweet.css">
<div id="tweets">
<h2>Tweets</h2>
</div>
JavaScript
$(function(){
$('#tweets').tweet({
username: "thekaleb"
, avatar_size: 48
, count: 3
, loading_text: "loading tweets..."
});
});