How to Add AutoPlay on TypeScript HTML5 Video
Use AutoPlay on HTML5 TypeScript Video Tag
I was struggling to add an autoplay property to a video html5 element. This is how to do it in React TypeScript.
<video autoPlay loop width="400" height="300">
<source src={mymp4} type="video/mp4" />
<img src={fallback.gif} width="400" height="300" />
</video>