Merge branch 'presenter-functionality' of https://github.com/OZhurbenko/bigbluebutton into presenter-functionality-2x
This commit is contained in:
commit
d7a4cd7a67
@ -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 />);
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user