2018-07-31 10:54:31 +02:00
|
|
|
//@flow
|
2018-07-31 10:16:18 +02:00
|
|
|
import React from "react";
|
2018-07-31 10:54:31 +02:00
|
|
|
import { connect } from "react-redux";
|
2018-07-31 10:16:18 +02:00
|
|
|
|
2018-07-31 10:54:31 +02:00
|
|
|
type Props = {};
|
2018-07-31 10:16:18 +02:00
|
|
|
|
|
|
|
|
class Groups extends React.Component<Props> {
|
|
|
|
|
render() {
|
2018-07-31 10:54:31 +02:00
|
|
|
return "groups will be displayed here";
|
2018-07-31 10:16:18 +02:00
|
|
|
}
|
2018-07-31 10:54:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const mapStateToProps = state => {
|
|
|
|
|
return {};
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const mapDispatchToProps = (dispatch) => {
|
|
|
|
|
return {};
|
2018-07-31 10:16:18 +02:00
|
|
|
};
|
|
|
|
|
|
2018-07-31 10:54:31 +02:00
|
|
|
export default connect(
|
|
|
|
|
mapStateToProps,
|
|
|
|
|
mapDispatchToProps
|
|
|
|
|
)(Groups);
|