// Modules import { LazyLoadImage } from "react-lazy-load-image-component"; import { Link } from "react-router-dom"; interface IProps { type?: "small" | "big"; img: string; title: string; id: number; } const ContentItem = ({ type = "small", img, title, id }: IProps) => { return (

{title}

); }; export default ContentItem;