JSFiddle - React, Tailwind, and code Playground

by GandalfTheWhite

HTML

<div align="center" id="searchDiv"></div>
<input type="text" id="searchBar" size="40" onsubmit="loadAllItems()" autofocus />
<input type="submit" id="searchButton" value="Search" onclick="loadAllItems();" /> <br><br>
<input type="button" value="Reset" onclick="reset()">

JavaScript

function reset() {
        document.getElementById("searchBar").value('');
      }