mirror of
https://github.com/makeplane/plane.git
synced 2025-12-25 08:09:33 +01:00
19 lines
512 B
TypeScript
19 lines
512 B
TypeScript
"use client";
|
|
|
|
import { FC } from "react";
|
|
// components
|
|
import { ProjectNavigation } from "@/components/workspace";
|
|
|
|
type TProjectItemsRootProps = {
|
|
workspaceSlug: string;
|
|
projectId: string;
|
|
isSidebarCollapsed: boolean;
|
|
};
|
|
|
|
export const ProjectNavigationRoot: FC<TProjectItemsRootProps> = (props) => {
|
|
const { workspaceSlug, projectId, isSidebarCollapsed } = props;
|
|
return (
|
|
<ProjectNavigation workspaceSlug={workspaceSlug} projectId={projectId} isSidebarCollapsed={isSidebarCollapsed} />
|
|
);
|
|
};
|