I am completely new to zustand and I would love to know if it is possible to make changes to a store from inside of another one? If so, please finish modify increasePopulation function in a way that it increases animals in forestStore as well. Thanks
const bearStore = create((set) => ({
bears: 0,
increasePopulation: () => set((state) => ({ bears: state.bears + 1 })),
//should also increase animals count in forestStore
}))
const forestStore = create((set) => ({
animals: 0,
}))