import { Link } from 'react-router-dom'; interface IEngageProps { title: string; description: string; image: any; more: { url: string; title: string; }; } const MiscEngage = ({ title, description, image, more }: IEngageProps) => { return (

{title}

{description}

{image}
{more.title}
); }; export { MiscEngage, type IEngageProps };