"use client"; import type { FC } from "react"; // components import { ProjectNavigation } from "@/components/workspace/sidebar/project-navigation"; type TProjectItemsRootProps = { workspaceSlug: string; projectId: string; }; export const ProjectNavigationRoot: FC = (props) => { const { workspaceSlug, projectId } = props; return ; };