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

12 lines
395 B
TypeScript
Raw Normal View History

import { useContext } from "react";
// mobx store
import { MobxStoreContext } from "lib/mobx/store-provider";
// types
import { ILabelRootStore } from "store/label";
export const useLabel = (): ILabelRootStore => {
const context = useContext(MobxStoreContext);
if (context === undefined) throw new Error("useMobxStore must be used within MobxStoreProvider");
return context.labelRoot;
};