bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/screenshare/component.jsx
2018-02-08 16:32:12 +00:00

14 lines
318 B
JavaScript

import React from 'react';
export default class ScreenshareComponent extends React.Component {
componentDidMount() {
this.props.presenterScreenshareHasStarted();
}
render() {
return (
<video id="screenshareVideo" style={{ max-height: '100%', width: '100%' }} autoPlay playsInline />
);
}
}