import { CardList } from "@/app/components/CardList/CardList";
export default function ReleasesOverview(props) {
return (
<>
{props.chips && (
{props.chips.map((item) => {
return (
);
})}
)}
{props.releases ? (
<>
{props.isNextPage && (
)}
>
) : (
)}
>
);
}