JSFiddle - React, Tailwind, and code Playground

HTML

<!DOCTYPE html>
<html>
<head>
<title></title>
<script src="https://unpkg.com/[email protected]"></script>

</head>
<body>
    <span _="on click
          increment the value of <input/>
          set the value of the next <input/> to 0">Click me third</span>
    <input type="number"
          value="0"/>
  <br/>
    <span _="on click
          increment the value of <input/>
          set the value of the next <input/> to 0">Click me second</span>
    <input type="number"
          value="0"/>
  <br/>
    <span _="on click
          increment the value of <input/>
          set the value of the next <input/> to 0">Click me first</span>
    <input type="number"
          value="0"/>
</body>
</html>