UNPKG

@ark-ui/react

Version:

A collection of unstyled, accessible UI components for React, utilizing state machines for seamless interaction.

11 lines (8 loc) 260 B
'use client'; import * as asyncList from '@zag-js/async-list'; import { useMachine } from '@zag-js/react'; function useAsyncList(props) { const service = useMachine(asyncList.machine, props); return asyncList.connect(service); } export { useAsyncList };