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

11 lines
363 B
TypeScript

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