import React from "react"; import { WithTranslation, withTranslation } from "react-i18next"; import { Notification } from "@scm-manager/ui-components"; class InstallSuccessNotification extends React.Component { render() { const { t } = this.props; return ( {t("plugins.modal.successNotification")}{" "} window.location.reload(true)}>{t("plugins.modal.reload")} ); } } export default withTranslation("admin")(InstallSuccessNotification);