UNPKG

@livelike/react-native

Version:

LiveLike React Native package

13 lines (9 loc) 355 B
import { IStickerPack } from '@livelike/javascript'; import { createStore } from './store'; const initialStickerPack: IStickerPack[] = []; export const stickerPackStore = createStore(initialStickerPack); export const stickerPackStoreActions = { updateStickerPacksAction(stickerPacks: IStickerPack[]) { stickerPackStore.set(stickerPacks); }, };