From 4cad18d7e92c6ec101a506c0c514b871279f417f Mon Sep 17 00:00:00 2001 From: sscoderati Date: Tue, 9 Jan 2024 13:15:10 +0900 Subject: [PATCH] =?UTF-8?q?Remove:=20=EC=82=AC=EC=9A=A9=ED=95=98=EC=A7=80?= =?UTF-8?q?=20=EC=95=8A=EB=8A=94=20store=20=EC=A0=9C=EA=B1=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - InterestStore 제거 --- src/store/InterestStore.tsx | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100644 src/store/InterestStore.tsx diff --git a/src/store/InterestStore.tsx b/src/store/InterestStore.tsx deleted file mode 100644 index 15fe23b..0000000 --- a/src/store/InterestStore.tsx +++ /dev/null @@ -1,13 +0,0 @@ -import { create } from "zustand"; - -type InterestList = { - interestList: string[]; - setInterestList: (list: string[]) => void; -}; - -const useInterestStore = create((set) => ({ - interestList: [], - setInterestList: (list) => set({ interestList: list }), -})); - -export default useInterestStore;