// @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 { render() { return ( "Groups will be displayed here!" ); } }; export default Groups;