import React from 'react'; import { Link, useLocation } from 'react-router-dom'; export const Header: React.FC = () => { const location = useLocation(); const isActive = (path: string) => location.pathname === path; return (
ClinicalMind
SM
); };