constructor()

in tutorials/viewer/src/video_view.tsx [61:70]


    constructor(props: VideoViewProps) {
        super(props);
        this.state = {
            canPlay: false,
            isPlaying: false,
            duration: null,
            currentTime: 0,
            autoplay: false
        };
    }