//@flow import React from "react"; import { translate } from "react-i18next"; import { CreateButton } from "@scm-manager/ui-components"; type Props = { t: string => string }; class CreateGroupButton extends React.Component { render() { const { t } = this.props; return ( ); } } export default translate("groups")(CreateGroupButton);