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 React from "react";
import { connect } from "react-redux";
type Props = { type Props = {};
};
class Groups extends React.Component<Props> { class Groups extends React.Component<Props> {
render() { render() {
return ( return "groups will be displayed here";
"Groups will be displayed here!"
);
} }
}
const mapStateToProps = state => {
return {};
}; };
export default Groups; const mapDispatchToProps = (dispatch) => {
return {};
};
export default connect(
mapStateToProps,
mapDispatchToProps
)(Groups);