plane/web/hooks/store/use-multiple-select-store.ts

10 lines
330 B
TypeScript
Raw Permalink Normal View History

import { useContext } from "react";
// store
import { StoreContext } from "@/lib/store-context";
export const useMultipleSelectStore = () => {
const context = useContext(StoreContext);
if (context === undefined) throw new Error("useMultipleSelectStore must be used within StoreProvider");
return context.multipleSelect;
};