import { Link } from 'react-router-dom'; interface LogoProps { title: string } function Logo({title}: LogoProps) { return ( {title} ); } export default Logo;