plane/web/components/global-views/root.tsx
2024-01-30 14:26:59 +05:30

14 lines
277 B
TypeScript

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>;
};