mirror of
https://github.com/makeplane/plane.git
synced 2025-12-23 15:19:37 +01:00
12 lines
397 B
TypeScript
12 lines
397 B
TypeScript
|
|
import { useContext } from "react";
|
||
|
|
// context
|
||
|
|
import { StoreContext } from "@/lib/store-context";
|
||
|
|
import { IStickyStore } from "@/store/sticky/sticky.store";
|
||
|
|
// plane web stores
|
||
|
|
|
||
|
|
export const useSticky = (): IStickyStore => {
|
||
|
|
const context = useContext(StoreContext);
|
||
|
|
if (context === undefined) throw new Error("useSticky must be used within StoreProvider");
|
||
|
|
return context.stickyStore;
|
||
|
|
};
|