Files
SCM-Manager/scm-ui/src/groups/containers/Groups.js
2018-07-31 10:16:18 +02:00

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;