import MediaItem from '@/components/MediaItem' import Pagination from '@/components/Pagination' import { ComponentProps } from 'react' interface Props { initialDisplayPosts?: { type: string; title: string; data: string | string[] }[] pagination?: ComponentProps } const MediaList = ({ initialDisplayPosts = [], pagination }: Props) => { return ( <>

Media

{initialDisplayPosts.length ? ( initialDisplayPosts.map((d) => ( )) ) : (

No media found.

)}
{pagination && pagination.totalPages > 1 && ( )} ) } export default MediaList