bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/actions-bar/container.jsx

23 lines
447 B
React
Raw Normal View History

2016-04-29 03:02:51 +08:00
import React, { Component, PropTypes } from 'react';
import { createContainer } from 'meteor/react-meteor-data';
import ActionsBar from './component';
2016-04-29 03:02:51 +08:00
class ActionsBarContainer extends Component {
2016-04-29 03:02:51 +08:00
constructor(props) {
super(props);
}
render() {
return (
<ActionsBar {...this.props}>
2016-04-29 03:02:51 +08:00
{this.props.children}
</ActionsBar>
2016-04-29 03:02:51 +08:00
);
}
}
export default createContainer(() => {
return {};
}, ActionsBarContainer);