plane/web/hooks/store/use-dashboard.ts

12 lines
400 B
TypeScript
Raw Normal View History

import { useContext } from "react";
// mobx store
2024-03-19 14:38:35 +00:00
import { StoreContext } from "@/contexts/store-context";
// types
2024-03-19 14:38:35 +00:00
import { IDashboardStore } from "@/store/dashboard.store";
export const useDashboard = (): IDashboardStore => {
const context = useContext(StoreContext);
if (context === undefined) throw new Error("useDashboard must be used within StoreProvider");
return context.dashboard;
};