JSFiddle - React, Tailwind, and code Playground
by Lucaskazama
HTML
<div class="strongs">
<div class="one">League Of Legends</div>
<input type=text class="two" value="Dota 2">
</div>
SCSS
.strongs {
display: flex;
flex-direction: row;
justify-content: center;
padding:10px;
.one {
color: teal;
padding:10px;
border: 1px solid teal;
}
}
JavaScript
var lol = $('.one');
var dota = $('.two');
lol.html(dota.val);