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

{title}

); }; export default ContentItem;