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;