[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

@ -4,11 +4,13 @@ export type TPageFlagHookArgs = {
export type TPageFlagHookReturnType = {
isMovePageEnabled: boolean;
isPageSharingEnabled: boolean;
};
export const usePageFlag = (args: TPageFlagHookArgs): TPageFlagHookReturnType => {
const {} = args;
return {
isMovePageEnabled: false,
isPageSharingEnabled: false,
};
};