plane/web/core/hooks/store/use-app-router.ts
2024-06-11 14:39:52 +05:30

11 lines
369 B
TypeScript

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