"use client"; import { FC } from "react"; import { observer } from "mobx-react-lite"; import { Briefcase } from "lucide-react"; // components import { ProjectLogo } from "@/components/common"; import { NavbarControls } from "@/components/issues"; // store import { PublishStore } from "@/store/publish/publish.store"; type Props = { publishSettings: PublishStore; }; export const IssuesNavbarRoot: FC = observer((props) => { const { publishSettings } = props; // hooks const { project_details } = publishSettings; return (
{/* project detail */}
{project_details ? ( ) : ( )}
{project_details?.name || `...`}
); });