mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
11 lines
358 B
TypeScript
11 lines
358 B
TypeScript
import { useContext } from "react";
|
|
// store
|
|
import { StoreContext } from "@/lib/store-provider";
|
|
import { IThemeStore } from "@/store/theme.store";
|
|
|
|
export const useTheme = (): IThemeStore => {
|
|
const context = useContext(StoreContext);
|
|
if (context === undefined) throw new Error("useTheme must be used within StoreProvider");
|
|
return context.theme;
|
|
};
|