Zustand
Zustand
npm install zustand์ฅ์
Store ์์ฑํ๊ธฐ
import create from 'zustand';
export const useCounterStore = create((set) => ({
count: 1,
increase: () => set((state) => ({ count: state.count + 1 }))
}))Persist Middleware
Persist Options
DevTools
Async
Last updated