import { FC } from "react"; type TGlobalViewsRootProps = { workspaceSlug: string; projectId: string; viewId: string; }; export const GlobalViewsRoot: FC = (props) => { const { viewId } = props; return
GlobalViewsRoot {viewId}
; };