JSFiddle - React, Tailwind, and code Playground

HTML

<div></div>

<a href="#">test</a>

CSS

div {background-color: red; height: 100px; width: 100px; }

JavaScript

$('a').click(function(){
    $('div').animate({width: 'toggle'});
});