bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/screenshare/component.jsx
Augusto Bennemann 65bf18e6ca Fix typo
2018-02-08 16:49:02 +00:00

14 lines
317 B
JavaScript

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