mirror of
https://github.com/makeplane/plane.git
synced 2026-02-25 04:35:21 +01:00
17 lines
519 B
TypeScript
17 lines
519 B
TypeScript
/**
|
|
* Copyright (c) 2023-present Plane Software, Inc. and contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
* See the LICENSE file for details.
|
|
*/
|
|
|
|
import { useContext } from "react";
|
|
// store
|
|
import { StoreContext } from "@/providers/store.provider";
|
|
import type { 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;
|
|
};
|