1
0
mirror of https://github.com/yldio/copilot.git synced 2024-12-12 04:50:06 +02:00
copilot/frontend/src/containers/org/people.js

36 lines
599 B
JavaScript
Raw Normal View History

2016-12-15 16:10:36 +02:00
const React = require('react');
// const ReactIntl = require('react-intl');
const ReactRedux = require('react-redux');
// const ReactRouter = require('react-router');
2016-12-20 21:06:02 +02:00
const Section = require('./section');
2016-12-15 16:10:36 +02:00
// const {
// FormattedMessage
// } = ReactIntl;
const {
connect
} = ReactRedux;
// const {
// Link,
// Match,
// Miss,
// Redirect
// } = ReactRouter;
2016-12-20 21:06:02 +02:00
const People = (props) => {
return (
<Section {...props}>
<p>people</p>
</Section>
);
2016-12-15 16:10:36 +02:00
};
People.propTypes = {};
const mapStateToProps = (state) => ({});
module.exports = connect(mapStateToProps)(People);