JSFiddle - React, Tailwind, and code Playground
HTML
<audio id="local" autoplay playsinline></audio>
JavaScript
navigator.mediaDevices.getUserMedia({audio: true, video: true})
.then(stream => {
stream.getVideoTracks().forEach(t => t.stop());
document.getElementById('local').srcObject = stream;
})