JSFiddle - React, Tailwind, and code Playground

by bodine30

HTML

<form>
<input type="text"/>
<input type="text"/>
<input type="text"/>
<input type="text"/>
<input type="text"/>
<input type="text"/>
<button type="submit">submit</button>
</form>

JavaScript

$("form").submit(function(e) {
    e.preventDefault();
});