가수면

Zustand 본문

React/라이브러리

Zustand

니비앙 2023. 7. 23. 16:39

npm install zustand

사용법

저장소 만들기

import { create } from "zustand";

interface CookieState {
  cookie: number;
  increase: (by: number) => void;
}

const useCookieStore = create<CookieState>()((set) => ({
  cookie: 0,
  increase: (by) => set((state) => ({ cookie: state.cookie + by })),
}));

'React > 라이브러리' 카테고리의 다른 글

React Query v5 바뀐 점  (1) 2023.11.11
리액트에서 Socket.io 구현  (0) 2023.07.27
리액트에서 CKEditor5 사용  (0) 2023.07.21
리액트에서 네이버 스마트 에디터 구현  (0) 2023.07.20
[Sanity] CRUD  (0) 2023.06.29
Comments