JSFiddle - React, Tailwind, and code Playground
HTML
<div class="appBanner">appbanner</div>
JavaScript
var appBanners = document.getElementsByClassName('appBanner'), i;
for (i = 0; i < appBanners.length; i += 1) {
appBanners[i].style.display = 'show';
}