'The "video tag" is not working on React.js

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;


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source