import React from "react"; import { observer } from "mobx-react-lite"; import { Tab } from "@headlessui/react"; // components import { CustomAnalytics, ScopeAndDemand } from "components/analytics"; // types import { ICycle, IModule, IProject } from "types"; // constants import { ANALYTICS_TABS } from "constants/analytics"; type Props = { fullScreen: boolean; cycleDetails: ICycle | undefined; moduleDetails: IModule | undefined; projectDetails: IProject | undefined; }; export const ProjectAnalyticsModalMainContent: React.FC = observer((props) => { const { fullScreen, cycleDetails, moduleDetails } = props; return ( {ANALYTICS_TABS.map((tab) => ( `rounded-3xl border border-custom-border-200 px-4 py-2 text-xs hover:bg-custom-background-80 ${ selected ? "bg-custom-background-80" : "" }` } onClick={() => {}} > {tab.title} ))} ); });