feat: init
This commit is contained in:
15
apps/web/ce/components/pages/modals/modals.tsx
Normal file
15
apps/web/ce/components/pages/modals/modals.tsx
Normal file
@@ -0,0 +1,15 @@
|
||||
"use client";
|
||||
|
||||
import type React from "react";
|
||||
import { observer } from "mobx-react";
|
||||
// components
|
||||
import type { EPageStoreType } from "@/plane-web/hooks/store";
|
||||
// store
|
||||
import type { TPageInstance } from "@/store/pages/base-page";
|
||||
|
||||
export type TPageModalsProps = {
|
||||
page: TPageInstance;
|
||||
storeType: EPageStoreType;
|
||||
};
|
||||
|
||||
export const PageModals: React.FC<TPageModalsProps> = observer((props) => null);
|
||||
Reference in New Issue
Block a user