UNPKG

@livelike/react-native

Version:

LiveLike React Native package

9 lines (7 loc) 237 B
import { useSyncExternalStore } from 'react'; import { LLStore } from '../store'; export function useStore<Store extends LLStore<unknown>>( store: Store ): Store['value'] { return useSyncExternalStore(store.subscribe, store.get); }