mirror of
https://github.com/gosticks/plane.git
synced 2025-10-16 12:45:33 +00: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;
|
|
};
|