mirror of
https://github.com/makeplane/plane.git
synced 2025-12-24 23:59:40 +01:00
* refactor: created a generic base page instance * refactor: project store hooks * chore: add missing prop declaration * refactor: editor page root and body * refactor: issue embed hook * chore: update search entity types * fix: version editor component * fix: add page to favorites action --------- Co-authored-by: Prateek Shourya <prateekshourya29@gmail.com>
9 lines
236 B
TypeScript
9 lines
236 B
TypeScript
// store
|
|
import { TPageInstance } from "@/store/pages/base-page";
|
|
|
|
export type TPageHeaderExtraActionsProps = {
|
|
page: TPageInstance;
|
|
};
|
|
|
|
export const PageDetailsHeaderExtraActions: React.FC<TPageHeaderExtraActionsProps> = () => null;
|