plane/apps/web/ce/components/pages/modals/modals.tsx
M. Palanikannan fd5ba6c7b8
[WIKI-511] [WIKI-572] fix: extended page root and editor body (#7661)
* fix: better refactoring of page root and editor body

* fix: editor sideeffects

* fix: add comments json field

* fix: props name

* fix: review changes

* fix: extra checks

* fix: type changes

* fix: remove editor ref current

* fix: renaming

* fix: link check
2025-09-01 22:17:53 +05:30

16 lines
390 B
TypeScript

"use client";
import React from "react";
import { observer } from "mobx-react";
// components
import { EPageStoreType } from "@/plane-web/hooks/store";
// store
import { TPageInstance } from "@/store/pages/base-page";
export type TPageModalsProps = {
page: TPageInstance;
storeType: EPageStoreType;
};
export const PageModals: React.FC<TPageModalsProps> = observer((props) => null);