uninstall unused pcks install zustand

This commit is contained in:
2023-03-04 00:42:22 +01:00
parent c3e5b151b0
commit ccf89a1cd4
3 changed files with 93 additions and 2158 deletions

View File

@ -0,0 +1,9 @@
import { create } from 'zustand'
const useNotificationStore = create((set) => ({
bears: 0,
increasePopulation: () => set((state: any) => ({ bears: state.bears + 1 })),
removeAllBears: () => set({ bears: 0 }),
}))