• Returns the resolved promise value from the closest <Await>.

    function SomeDescendant() {
    const value = useAsyncValue();
    // ...
    }

    // somewhere in your app
    <Await resolve={somePromise}>
    <SomeDescendant />
    </Await>

    Returns unknown