[WIKI-384] chore: editor core refactor (#7235)
* fix: extra actions * chore: page flags
This commit is contained in:
parent
171099667e
commit
414010688d
5 changed files with 19 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
12
web/ce/components/pages/header/share-control.tsx
Normal file
12
web/ce/components/pages/header/share-control.tsx
Normal 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;
|
||||
Loading…
Add table
Add a link
Reference in a new issue