mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-15 17:56:17 +01:00
remove unneccesary imports
This commit is contained in:
@@ -3,7 +3,6 @@ import React from "react";
|
||||
import { DeleteButton } from "../../../components/buttons";
|
||||
import { translate } from "react-i18next";
|
||||
import classNames from "classnames";
|
||||
import {InputField} from "../../../components/forms";
|
||||
|
||||
type Props = {
|
||||
t: string => string,
|
||||
@@ -14,11 +13,9 @@ type Props = {
|
||||
|
||||
type State = {};
|
||||
|
||||
|
||||
|
||||
class RemoveAdminGroupButton extends React.Component<Props, State> {
|
||||
render() {
|
||||
const { t , groupname, removeGroup, disabled} = this.props;
|
||||
const { t, groupname, removeGroup, disabled } = this.props;
|
||||
return (
|
||||
<div className={classNames("is-pulled-right")}>
|
||||
<DeleteButton
|
||||
|
||||
@@ -3,7 +3,6 @@ import React from "react";
|
||||
import { DeleteButton } from "../../../components/buttons";
|
||||
import { translate } from "react-i18next";
|
||||
import classNames from "classnames";
|
||||
import { InputField } from "../../../components/forms";
|
||||
|
||||
type Props = {
|
||||
t: string => string,
|
||||
|
||||
@@ -2,7 +2,6 @@
|
||||
import React from "react";
|
||||
import { translate } from "react-i18next";
|
||||
import RemoveAdminUserButton from "../buttons/RemoveAdminUserButton";
|
||||
import { InputField } from "../../../components/forms";
|
||||
|
||||
type Props = {
|
||||
adminUsers: string[],
|
||||
|
||||
Reference in New Issue
Block a user