render()

in frontend/mx/src/containers/dps-animation.js [79:102]


  render() {
    const { fadeOut } = this.state;
    let classes = 'intro-animation';
    classes = fadeOut ? classes + ' fade-out' : classes;

    return (
      <Styled className={classes}>
        <video
          src={introAnimation}
          preload="auto"
          muted
          ref={el => (this.videoEl = el)}
        />
        <div>
          <StyledButton
            className="next-button large"
            onClick={this.skipAnimation}
          >
            Close
          </StyledButton>
        </div>
      </Styled>
    );
  }