mirror of
https://github.com/gosticks/plane.git
synced 2025-10-16 12:45:33 +00:00
* 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
16 lines
390 B
TypeScript
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);
|