bb-plane-fork/web/ce/components/pages/header/move-control.tsx
Aaryan Khandelwal eac1115566
[WIKI-320] refactor: page header actions (#6946)
* refactor: page header actions

* chore: update toolbar component

* chore: update archived and lock badge colors

* chore: added observer to favorite control
2025-04-17 20:52:33 +05:30

10 lines
215 B
TypeScript

"use client";
// store
import { TPageInstance } from "@/store/pages/base-page";
export type TPageMoveControlProps = {
page: TPageInstance;
};
export const PageMoveControl = ({}: TPageMoveControlProps) => null;