mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-09 15:05:44 +01:00
added first routing and mock for groups page
This commit is contained in:
21
scm-ui/src/groups/containers/Groups.js
Normal file
21
scm-ui/src/groups/containers/Groups.js
Normal file
@@ -0,0 +1,21 @@
|
||||
// @flow
|
||||
import React from "react";
|
||||
import type { History } from "history";
|
||||
import { connect } from "react-redux";
|
||||
import { translate } from "react-i18next";
|
||||
|
||||
type Props = {
|
||||
};
|
||||
|
||||
|
||||
class Groups extends React.Component<Props> {
|
||||
|
||||
|
||||
render() {
|
||||
return (
|
||||
"Groups will be displayed here!"
|
||||
);
|
||||
}
|
||||
};
|
||||
|
||||
export default Groups;
|
||||
Reference in New Issue
Block a user