23 lines
426 B
JavaScript
23 lines
426 B
JavaScript
import React, { Component, PropTypes } from 'react';
|
|
import { createContainer } from 'meteor/react-meteor-data';
|
|
|
|
import VideoDock from './component';
|
|
|
|
class VideoDockContainer extends Component {
|
|
constructor(props) {
|
|
super(props);
|
|
}
|
|
|
|
render() {
|
|
return (
|
|
<VideoDock>
|
|
{this.props.children}
|
|
</VideoDock>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default createContainer(() => {
|
|
return {};
|
|
}, VideoDockContainer);
|