ФУНКЦИИ - МЕЖПРОЕКТНАЯ КОММУНИКАЦИЯ: frontend read-layer и первый экран двусторонней доски внешних контуров
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
/**
|
||||
* 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";
|
||||
import { StoreContext } from "@/lib/store-context";
|
||||
import type { IProjectExternalContoursBoardStore } from "@/store/external-contours/project-external-contours-board.store";
|
||||
|
||||
export const useProjectExternalContoursBoard = (): IProjectExternalContoursBoardStore => {
|
||||
const context = useContext(StoreContext);
|
||||
if (context === undefined) throw new Error("useProjectExternalContoursBoard must be used within StoreProvider");
|
||||
return context.projectExternalContoursBoard;
|
||||
};
|
||||
Reference in New Issue
Block a user