forked from github/plane
11 lines
375 B
TypeScript
11 lines
375 B
TypeScript
|
import { useContext } from "react";
|
||
|
// store
|
||
|
import { StoreContext } from "@/lib/store-context";
|
||
|
import { IInstanceStore } from "@/store/instance.store";
|
||
|
|
||
|
export const useInstance = (): IInstanceStore => {
|
||
|
const context = useContext(StoreContext);
|
||
|
if (context === undefined) throw new Error("useInstance must be used within StoreProvider");
|
||
|
return context.instance;
|
||
|
};
|