import React, { Fragment, useState } from "react"; // headless ui import { Tab } from "@headlessui/react"; // components import { CustomAnalytics, ScopeAndDemand } from "components/analytics"; // icons import { ArrowsPointingInIcon, ArrowsPointingOutIcon, XMarkIcon, } from "@heroicons/react/24/outline"; type Props = { isOpen: boolean; onClose: () => void; }; const tabsList = ["Scope and Demand", "Custom Analytics"]; export const AnalyticsProjectModal: React.FC = ({ isOpen, onClose }) => { const [fullScreen, setFullScreen] = useState(false); const handleClose = () => { onClose(); }; return (

Project Analytics

{tabsList.map((tab) => ( `rounded-3xl border border-brand-base px-4 py-2 text-xs hover:bg-brand-base ${ selected ? "bg-brand-base" : "" }` } > {tab} ))}
); };