import {Link, MenuItem} from '@mui/material'; import React from 'react'; type Props = { label: JSX.Element | string; url: string; id: string; }; const ExternalLink = (props: Props) => { const {label, url, id} = props; return ( {label} ); }; export default ExternalLink;