Enode — API Reference
    Preparing search index...
    • Screen-level error presenter. present(err, opts) routes offline/graceful → toast (or inline for forms) and blocking → a blocking presentation the screen renders with . Redirects are left to the guards.

      Returns {
          blocking: BlockingPresentation | null;
          clearBlocking: () => void;
          inlineError: string | null;
          present: (
              err: unknown,
              opts?: { inline?: boolean; onRetry?: () => void },
          ) => ErrorDisposition;
          setInlineError: Dispatch<SetStateAction<string | null>>;
      }