/* eslint-disable */ // @ts-nocheck import { useTranslation } from "react-i18next"; import { Alert, AlertVariant, ClipboardCopy, Form, FormGroup, Modal, ModalVariant, } from "../../../shared/@patternfly/react-core"; type AccessTokenDialogProps = { token: string; toggleDialog: () => void; }; export const AccessTokenDialog = ({ token, toggleDialog, }: AccessTokenDialogProps) => { const { t } = useTranslation(); return (
{token}
); };