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