UNPKG

create-incu-app

Version:
14 lines (12 loc) 336 B
import {StateCreator} from "zustand"; import {BearSlice, FishSlice, SharedSlice} from "./index.types"; export const createBearFishSlice: StateCreator<BearSlice & FishSlice, [], [], SharedSlice> = ( set, get, ) => ({ addBoth: () => { get().addBear(); get().addFish(); }, getBoth: () => get().bears + get().fishes, });