JSFiddle - React, Tailwind, and code Playground
HTML
<input class="focus" type="text" value="">
<div class="hidden"></div>
CSS
div.hidden {
background: #f0a;
display: true;
height: 200px;
width: 200px; }
input.focus:focus + div.hidden { display: none }