"use client"; import { FC } from "react"; // plane imports import { EProjectFeatureKey } from "@plane/constants"; // local components import { ProjectBreadcrumb } from "./project"; import { ProjectFeatureBreadcrumb } from "./project-feature"; type TCommonProjectBreadcrumbProps = { workspaceSlug: string; projectId: string; featureKey?: EProjectFeatureKey; isLast?: boolean; }; export const CommonProjectBreadcrumbs: FC = (props) => { const { workspaceSlug, projectId, featureKey, isLast = false } = props; return ( <> {featureKey && ( )} ); };