useAsyncError
最も近い<Await>コンポーネントからのリジェクション値を返します。
<Await>
import { Await, useAsyncError } from "@remix-run/react"; function ErrorElement() { const error = useAsyncError(); return ( <p>おっと、何か問題が発生しました! {error.message}</p> ); } <Await resolve={promiseThatRejects} errorElement={<ErrorElement />} />;
ガイド
API
<Await/>
useAsyncValue()