2016-05-04 04:40:46 +08:00
|
|
|
import React, { Component, PropTypes } from 'react';
|
|
|
|
import { createContainer } from 'meteor/react-meteor-data';
|
|
|
|
|
2016-05-20 21:44:27 +08:00
|
|
|
import VideoDock from './component';
|
2016-05-04 04:40:46 +08:00
|
|
|
|
|
|
|
class VideoDockContainer extends Component {
|
|
|
|
constructor(props) {
|
|
|
|
super(props);
|
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
|
|
|
return (
|
|
|
|
<VideoDock>
|
|
|
|
{this.props.children}
|
|
|
|
</VideoDock>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default createContainer(() => {
|
2016-06-28 02:24:37 +08:00
|
|
|
let data = {};
|
|
|
|
return data;
|
2016-05-04 04:40:46 +08:00
|
|
|
}, VideoDockContainer);
|