JSFiddle - React, Tailwind, and code Playground

HTML

<div>
<input type="text" placeholder="sometext" />

<input type="button" value="button" class="button"/>
<br/><br/>
<button class="button"> Another button</button>
</div>

JavaScript

$(document).ready(function(){
$('.button').css( 'cursor', 'default' );	
});