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