JSFiddle - React, Tailwind, and code Playground

HTML

<video id="video" autoplay="true"></video>

JavaScript

navigator.webkitGetUserMedia({
    video: {
        mandatory: {
            minWidth: 30,
            minHeight: 30,
            maxFrameRate: 50
        }
    },
    audio: true

}, function (stream) {
     document.getElementById('video').src = URL.createObjectURL(stream);
}, function (err) {
    console.log(err)
});