mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-08 22:45:45 +01:00
22 lines
330 B
JavaScript
22 lines
330 B
JavaScript
|
|
// @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;
|