Returns the resolved promise value from the closest <Await>.
<Await>
function SomeDescendant() { const value = useAsyncValue(); // ...}// somewhere in your app<Await resolve={somePromise}> <SomeDescendant /></Await> Copy
function SomeDescendant() { const value = useAsyncValue(); // ...}// somewhere in your app<Await resolve={somePromise}> <SomeDescendant /></Await>
Returns the resolved promise value from the closest
<Await>
.