bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/actions-bar/container.jsx
2016-05-20 10:46:30 -03:00

23 lines
447 B
JavaScript

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