import { useRouter } from '@uirouter/react'; import { Button, CopyButton } from '@@/buttons'; import { FormSectionTitle } from '@@/form-components/FormSectionTitle'; import { TextTip } from '@@/Tip/TextTip'; export function DisplayUserAccessToken({ apikey }: { apikey: string }) { const router = useRouter(); return ( <> New access token Please copy the new access token. You won't be able to view the token again.
{apikey}

); }