import type { OIDCCallbackError } from '../lib/oidc'; import { Button } from './ui'; export function OIDCCallbackNotice(props: { error: OIDCCallbackError; onRetry: () => void; }) { return (
{props.error.message} {props.error.diagnosticId && 诊断编号:{props.error.diagnosticId}} {props.error.retryable && ( )}
); }