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