\n {(post.imageUrl || post.mobileImageUrl) && (\n
{\n handlePostCardClick(post);\n }}\n >\n
\n \n
\n \n )}\n
\n \n {dayjs(post.publishedAt).format('DD MMMM YYYY')}\n \n \n \n {post.title}\n \n \n \n {post.description || ''}\n \n
\n
\n );\n}\n","import InfiniteScroll from 'react-infinite-scroller';\n\nimport PostCard from 'components/post/PostCard';\n\nimport { PostType } from 'graphql/types';\n\nimport css from './PostsList.module.scss';\n\ninterface IProps {\n posts: PostType[];\n\n onLoadMore(): void;\n}\n\nexport default function PostsList({ posts, onLoadMore }: IProps) {\n return (\n