JSFiddle - React, Tailwind, and code Playground
by hcanning2012
HTML
<div id="tweet-container" class="embedded-tweets"></div>
<script src="https://platform.twitter.com/widgets.js"></script>
<script>
let tweetId = "1580872355425181696"
let tweetContainer = document.getElementById('tweet-container');
twttr.widgets.createTweet(tweetId, tweetContainer)
.then(function (tweet) {
let style = tweet.shadowRoot.firstElementChild;
let css = document.createTextNode(`.EmbeddedTweet .CallToAction { display: none; }`);
style.appendChild(css);
});
</script>