Merge branch 'presenter-functionality' of https://github.com/OZhurbenko/bigbluebutton into presenter-functionality-2x

This commit is contained in:
Oleksandr Zhurbenko 2017-07-14 16:15:26 -07:00
commit d7a4cd7a67

View File

@ -0,0 +1,29 @@
import React from 'react';
import PropTypes from 'prop-types';
import styles from '../styles.scss';
export default class PanZoomDrawListener extends React.Component {
constructor(props) {
super(props);
this.mouseDownHandler = this.mouseDownHandler.bind(this);
this.mouseMoveHandler = this.mouseMoveHandler.bind(this);
this.mouseUpHandler = this.mouseUpHandler.bind(this);
}
mouseDownHandler() {
}
mouseMoveHandler() {
}
mouseUpHandler() {
}
render() {
return (<div />);
}
}