mirror of
https://github.com/makeplane/plane.git
synced 2026-07-12 05:21:14 +02:00
* chore: project navigation items code refactor * fix: build error * chore: code refactor * chore: code refactor
16 lines
411 B
TypeScript
16 lines
411 B
TypeScript
"use client";
|
|
|
|
import { FC } from "react";
|
|
// components
|
|
import { ProjectNavigation } from "@/components/workspace";
|
|
|
|
type TProjectItemsRootProps = {
|
|
workspaceSlug: string;
|
|
projectId: string;
|
|
};
|
|
|
|
export const ProjectNavigationRoot: FC<TProjectItemsRootProps> = (props) => {
|
|
const { workspaceSlug, projectId } = props;
|
|
return <ProjectNavigation workspaceSlug={workspaceSlug} projectId={projectId} />;
|
|
};
|