16 lines
443 B
TypeScript
16 lines
443 B
TypeScript
"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<TProjectItemsRootProps> = (props) => {
|
|
const { workspaceSlug, projectId } = props;
|
|
return <ProjectNavigation workspaceSlug={workspaceSlug} projectId={projectId} />;
|
|
};
|