30 lines
649 B
JavaScript
Executable File
30 lines
649 B
JavaScript
Executable File
import React, { Component, PropTypes } from 'react';
|
|
import { createContainer } from 'meteor/react-meteor-data';
|
|
|
|
import AboutComponent from './component';
|
|
|
|
class AboutContainer extends Component {
|
|
constructor(props) {
|
|
super(props);
|
|
}
|
|
|
|
render() {
|
|
return (
|
|
<AboutComponent {...this.props}>
|
|
{this.props.children}
|
|
</AboutComponent>
|
|
);
|
|
}
|
|
}
|
|
|
|
const getClientBuildInfo = function () {
|
|
return {
|
|
clientBuild: Meteor.settings.public.app.html5ClientBuild,
|
|
copyright: Meteor.settings.public.app.copyright,
|
|
};
|
|
};
|
|
|
|
export default createContainer(function () {
|
|
return getClientBuildInfo();
|
|
}, AboutContainer);
|