File size: 613 Bytes
a8f64d2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import React from 'react';
import './App.css';

function VisualisationPage( props ) {
  return (
    <>
      <div className={props.isVisible ? 'visible' : 'hidden'}>
         <video width="95%" height="95%" autoPlay muted playsInline controls={false}>
          <source src="./intro2.mp4" type="video/mp4" />
          Your browser does not support the video tag.
        </video>

        <div className="centered-container">
          <button 
            onClick={() => props.onPageButtonClick('Review')}
          >Begin</button>
        </div>
      </div>
    </>
  );
}

export default VisualisationPage;