0
0
mirror of https://github.com/makeplane/plane synced 2024-06-14 14:31:34 +00:00
plane/web/components/global-views/root.tsx

14 lines
277 B
TypeScript
Raw Normal View History

2024-01-30 08:56:59 +00:00
import { FC } from "react";
type TGlobalViewsRootProps = {
workspaceSlug: string;
projectId: string;
viewId: string;
};
export const GlobalViewsRoot: FC<TGlobalViewsRootProps> = (props) => {
const { viewId } = props;
return <div>GlobalViewsRoot {viewId}</div>;
};