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