I am facing an issue where the video is not visible on the page when trying to import a video in React.
Upon checking the network section, I can see that the video status code is 200.
import React from "react";
function Video() {
return (
<div className="video">
<video width="320" height="240" autoplay>
<source src="https://www.youtube.com/watch?v=Nfs1vsDlrxI"></source>
Your browser does not support the video tag
</video>
</div>
);
}
export default Video;
(I have already imported my Video.js file in App.js)