Files
SCM-Manager/scm-ui/src/groups/containers/Groups.js

25 lines
390 B
JavaScript
Raw Normal View History

2018-07-31 10:54:31 +02:00
//@flow
import React from "react";
2018-07-31 10:54:31 +02:00
import { connect } from "react-redux";
2018-07-31 10:54:31 +02:00
type Props = {};
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:54:31 +02:00
}
const mapStateToProps = state => {
return {};
};
const mapDispatchToProps = (dispatch) => {
return {};
};
2018-07-31 10:54:31 +02:00
export default connect(
mapStateToProps,
mapDispatchToProps
)(Groups);