function VideoContainer()

in website/src/pages/index.js [49:84]


function VideoContainer() {
  return (
    <div className="container text--center margin-bottom--xl">
      <div className="row">
        <div className="col">
          <h2>Brief Introduction into Flux</h2>
          <div>
            <iframe
              width="560"
              height="315"
              src="https://www.youtube.com/embed/pR4A9YONzuo"
              title="Explain Like I'm 5: Flux"
              frameBorder="0"
              allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
              allowFullScreen
            />
          </div>
        </div>
        <div className="col">
          <h2>Closer Look at Flux</h2>
          <div>
            <iframe
              width="560"
              height="315"
              src="https://www.youtube.com/embed/nYkdrAPrdcw"
              title="Hacker Way: Rethinking Web App Development at Facebook"
              frameBorder="0"
              allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
              allowFullScreen
            />
          </div>
        </div>
      </div>
    </div>
  );
}