10 lines
323 B
TypeScript
10 lines
323 B
TypeScript
// 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;
|