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

22 lines
330 B
JavaScript
Raw Normal View History

// @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;