JSFiddle - React, Tailwind, and code Playground

HTML

<video width="400" controls id="your-video" width="770" height="882" onclick="playVid()">
  <source src="https://www.w3schools.com/html/mov_bbb.mp4" type="video/mp4">
</video>


<script>
function playVid(){
  var video = document.getElementById('your-video');
  // plays video
  video.play();
  //execute on end
  video.addEventListener('ended', function(){
  		//Redirects
      window.location = 'https://www.google.com';
  });
  
}
</script>