2017-06-04 10:40:14 +08:00
|
|
|
import React, { Component } from 'react';
|
|
|
|
import PropTypes from 'prop-types';
|
2016-05-04 04:40:46 +08:00
|
|
|
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(() => {
|
2017-06-03 03:25:02 +08:00
|
|
|
const data = {};
|
2016-06-28 02:24:37 +08:00
|
|
|
return data;
|
2016-05-04 04:40:46 +08:00
|
|
|
}, VideoDockContainer);
|