added first routing and mock for groups page

This commit is contained in:
Maren Süwer
2018-07-31 10:16:18 +02:00
parent 3178c14af8
commit 83c5e6746b
4 changed files with 36 additions and 1 deletions

View 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;