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