create-incu-app
Version:
Create a new incu app 🍃
14 lines (12 loc) • 336 B
text/typescript
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,
});