bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/whiteboard/WhiteboardContainer.jsx

23 lines
436 B
React
Raw Normal View History

import React, { Component, PropTypes } from 'react';
import { createContainer } from 'meteor/react-meteor-data';
import Whiteboard from './Whiteboard.jsx';
class WhiteboardContainer extends Component {
constructor(props) {
super(props);
}
render() {
return (
<Whiteboard>
{this.props.children}
</Whiteboard>
);
}
}
export default createContainer(() => {
return {};
}, WhiteboardContainer);