`AsyncListData` contains cursor to support hiding "load more button" if there is no more items, such as ```javascript let list = useAsyncList({}); // render list.cursor ? <Button onPress={list.loadMore}>Load more</Button> : null ```
AsyncListDatacontains cursor to support hiding "load more button" if there is no more items, such as