bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/whiteboard/container.jsx
2016-05-26 17:03:30 -07:00

24 lines
545 B
JavaScript
Executable File

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