JSFiddle - React, Tailwind, and code Playground

HTML

<!DOCTYPE html>
<html>
<body>

<audio controls id="audio">
  <source src="http://cdnbakmi.kaltura.com/p/1269291/sp/126929100/serveFlavor/entryId/1_yj9yb2rp/flavorId/1_4t2rxo2w/name/a.webm" type="audio/webm">

Your browser does not support the audio element.
</audio>

<input type="button" onclick="stop()" value="stop"/>
<script>
function stop()
{
 document.getElementById("audio").pause();
  document.getElementById("audio").currentTime  = 0;

}
</script>
</body>
</html>