JSFiddle - React, Tailwind, and code Playground

HTML

<audio id="audio_1">
    <source src="http://media.freesound.org/data/117/previews/117413__joedeshon__wooden_ball_against_wooden_window_shade_preview.mp3">
    </audio>
        <h1>Métronome à 180 bpm</h1>

JavaScript

var s = document.getElementById('audio_1');
setInterval(function() {
    s.play();
}, 333, 33);