mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
febf19ccc0
* feat: changemod space * fix: space app dir fixes * fix: build errors
12 lines
358 B
TypeScript
12 lines
358 B
TypeScript
import { useContext } from "react";
|
|
// lib
|
|
import { StoreContext } from "@/lib/app-providers";
|
|
// store
|
|
import { IUserStore } from "@/store/user.store";
|
|
|
|
export const useUser = (): IUserStore => {
|
|
const context = useContext(StoreContext);
|
|
if (context === undefined) throw new Error("useUser must be used within StoreProvider");
|
|
return context.user;
|
|
};
|