feat: init
This commit is contained in:
15
apps/web/ce/components/sidebar/project-navigation-root.tsx
Normal file
15
apps/web/ce/components/sidebar/project-navigation-root.tsx
Normal file
@@ -0,0 +1,15 @@
|
||||
"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} />;
|
||||
};
|
||||
Reference in New Issue
Block a user