mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-17 02:31:14 +01:00
add dummy connector to groups
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user