Added facts status
This commit is contained in:
parent
81acc255d7
commit
67ab0186b5
6 changed files with 53 additions and 0 deletions
39
imports/ui/pages/Status/Status.js
Normal file
39
imports/ui/pages/Status/Status.js
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
/* eslint-disable react/jsx-indent-props */
|
||||
/* eslint-disable import/no-absolute-path */
|
||||
/* eslint-disable import/no-absolute-path */
|
||||
|
||||
import React, { Fragment, Component } from 'react';
|
||||
import PropTypes from 'prop-types';
|
||||
import { translate } from 'react-i18next';
|
||||
import { withTracker } from 'meteor/react-meteor-data';
|
||||
import Blaze from 'meteor/gadicc:blaze-react-component';
|
||||
|
||||
class Status extends Component {
|
||||
constructor(props) {
|
||||
super(props);
|
||||
this.t = props.t;
|
||||
this.state = {
|
||||
};
|
||||
}
|
||||
|
||||
render() {
|
||||
return (
|
||||
<Fragment>
|
||||
<h4 className="page-header">Status</h4>
|
||||
<Blaze template="serverFacts" />
|
||||
</Fragment>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Status.propTypes = {
|
||||
t: PropTypes.func.isRequired
|
||||
};
|
||||
|
||||
Status.defaultProps = {
|
||||
};
|
||||
|
||||
// export default translate([], { wait: true })(Status);
|
||||
export default translate([], { wait: true })(withTracker(props => ({
|
||||
// props.something
|
||||
}))(Status));
|
||||
Loading…
Add table
Add a link
Reference in a new issue