i wanna use "video tag" for background but it doesn work. what is wrong..?
const Auth = () => {
const covervid = '../css/video/vidbackground.mp4';
return (
<div className="Auth">
<video autoPlay={true} muted={true} loop={true} style={{ width: '100%' }}>
<source src={covervid} type="video/mp4" />
</video>
</div>
);
};
export default Auth;