plane/web/hooks/store/use-project-page.ts

10 lines
324 B
TypeScript
Raw Normal View History

2024-01-07 06:35:52 +00:00
import { useContext } from "react";
// mobx store
import { StoreContext } from "contexts/store-context";
export const useProjectPages = () => {
const context = useContext(StoreContext);
if (context === undefined) throw new Error("useProjectPublish must be used within StoreProvider");
return context.projectPages;
};