JSFiddle - React, Tailwind, and code Playground

HTML

<div id="hello">CLICK ME</div>

<div id="content">HELLO</div>

CSS

#hello {
    cursor : pointer;
}

JavaScript

$("#hello").toggle(function(){
     $('#content').css({marginLeft:'20px'});
 },function(){
     $('#content').css({marginLeft:'0px'});
 });