• 从最近的 <Await> 返回已解决的 Promise 值。

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

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

    返回 unknown