React 상태 관리의 가벼운 대안인 Zustand는 Redux보다 훨씬 간결하고, Context API보다 더 강력한 상태 공유를 제공합니다. 🐻 Zustand란?독일어로 "상태(state)"를 뜻함Minimal한 API, boilerplate 없는 사용성글로벌 상태를 말들되, context나 provider없이도 동작함비동기 로직, 미들웨어, 퍼포먼스 최적화도 지원 1. 📦 Zustand 기본 사용법설치npm install zustand 스토어 만들기import { create } from 'zustand'interface CountState { count: number; increase: () => void; reset: () => void;};const useStore = crea..