UNPKG

@livelike/react-native

Version:

LiveLike React Native package

10 lines (8 loc) 228 B
import { useSyncExternalStore } from 'react'; import { bannerStore } from '../store'; export function useBanner() { const banners = useSyncExternalStore(bannerStore.subscribe, bannerStore.get); return { banners, }; }