[WIKI-384] chore: editor core refactor (#7235)

* fix: extra actions

* chore: page flags
This commit is contained in:
M. Palanikannan 2025-06-19 15:59:38 +05:30 committed by GitHub
parent 171099667e
commit 414010688d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 19 additions and 1 deletions

View file

@ -1,8 +1,10 @@
// store
import { EPageStoreType } from "@/plane-web/hooks/store";
import { TPageInstance } from "@/store/pages/base-page";
export type TPageHeaderExtraActionsProps = {
page: TPageInstance;
storeType: EPageStoreType;
};
export const PageDetailsHeaderExtraActions: React.FC<TPageHeaderExtraActionsProps> = () => null;

View file

@ -0,0 +1,12 @@
"use client";
import { type EPageStoreType } from "@/plane-web/hooks/store";
// store
import { TPageInstance } from "@/store/pages/base-page";
export type TPageShareControlProps = {
page: TPageInstance;
storeType: EPageStoreType;
};
export const PageShareControl = ({}: TPageShareControlProps) => null;