mirror of
https://github.com/makeplane/plane.git
synced 2025-12-23 07:09:34 +01:00
11 lines
215 B
TypeScript
11 lines
215 B
TypeScript
|
|
"use client";
|
||
|
|
|
||
|
|
// store
|
||
|
|
import { TPageInstance } from "@/store/pages/base-page";
|
||
|
|
|
||
|
|
export type TPageMoveControlProps = {
|
||
|
|
page: TPageInstance;
|
||
|
|
};
|
||
|
|
|
||
|
|
export const PageMoveControl = ({}: TPageMoveControlProps) => null;
|