UNPKG

@livelike/react-native

Version:

LiveLike React Native package

12 lines 362 B
import { createStore } from './store'; const initialBannerStoreValue = []; export const bannerStore = createStore(initialBannerStoreValue); export const bannerStoreActions = { addBannerItem(banner) { bannerStore.set([...bannerStore.get(), banner]); }, updateBannerItems(banners) { bannerStore.set(banners); } }; //# sourceMappingURL=banner.js.map