docs/api/hooks/useAsyncValue.md
[MODES: framework, data]
Returns the resolved promise value from the closest <Await>.
function SomeDescendant() {
const value = useAsyncValue();
// ...
}
// somewhere in your app
<Await resolve={somePromise}>
<SomeDescendant />
</Await>;
function useAsyncValue(): unknown
The resolved value from the nearest Await component