import { CardList } from "@/app/components/CardList/CardList";
import { useState } from "react";
export default function ReleasesOverview(props) {
const [view, setView] = useState("grid");
return (
<>
{props.chips && (
{props.chips.map((item) => {
return (
);
})}
)}
{props.releases ? (
<>
{props.isNextPage && (
)}
>
) : (
)}
>
);
}