UNPKG

@livelike/react-native

Version:

LiveLike React Native package

9 lines 305 B
import { createStore } from './store'; const initialStickerPack = []; export const stickerPackStore = createStore(initialStickerPack); export const stickerPackStoreActions = { updateStickerPacksAction(stickerPacks) { stickerPackStore.set(stickerPacks); } }; //# sourceMappingURL=stickerPack.js.map