import React from "react";
import { useTranslation } from "react-i18next";
import { FormGroup, TextInput } from "@patternfly/react-core";
import { HelpItem } from "../../components/help-enabler/HelpItem";
import { PasswordInput } from "../../components/password-input/PasswordInput";
export const StoreSettings = ({
register,
hidePassword = false,
}: {
register: () => void;
hidePassword?: boolean;
}) => {
const { t } = useTranslation("clients");
return (
<>
}
>
{!hidePassword && (
}
>
)}
}
>
>
);
};