mirror of
https://github.com/makeplane/plane.git
synced 2026-02-25 04:35:21 +01:00
17 lines
549 B
TypeScript
17 lines
549 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 { IWorkspaceStore } from "@/store/workspace.store";
|
|
|
|
export const useWorkspace = (): IWorkspaceStore => {
|
|
const context = useContext(StoreContext);
|
|
if (context === undefined) throw new Error("useWorkspace must be used within StoreProvider");
|
|
return context.workspace;
|
|
};
|