add dummy connector to groups

This commit is contained in:
Maren Süwer
2018-07-31 10:54:31 +02:00
parent 3e44a3c281
commit cdce20d5ea

View File

@@ -1,18 +1,24 @@
// @flow
//@flow
import React from "react";
import { connect } from "react-redux";
type Props = {
};
type Props = {};
class Groups extends React.Component<Props> {
render() {
return (
"Groups will be displayed here!"
);
return "groups will be displayed here";
}
}
const mapStateToProps = state => {
return {};
};
export default Groups;
const mapDispatchToProps = (dispatch) => {
return {};
};
export default connect(
mapStateToProps,
mapDispatchToProps
)(Groups);