'use client'; import { Button } from "@mui/material"; import { useState } from "react" const listLink = [ { name: 'درباره پزشک', link: 'about-doctor' }, { name: 'موقعیت مکانی ', link: 'location' }, { name: 'نظرات', link: 'comments' }, ] function Link() { const [activeId, setActiveId] = useState(0); return ( ) } export default Link