mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
98ebe88c86
* dev: multiple select core components * chore: added export statement
10 lines
330 B
TypeScript
10 lines
330 B
TypeScript
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;
|
|
};
|