"use client"; import { PaginatedBookGrid } from "@/components/series/PaginatedBookGrid"; import { SeriesHeader } from "@/components/series/SeriesHeader"; import { Container } from "@/components/ui/container"; import { useRefresh } from "@/contexts/RefreshContext"; import type { NormalizedBooksPage, NormalizedSeries } from "@/lib/providers/types"; import type { UserPreferences } from "@/types/preferences"; interface SeriesContentProps { series: NormalizedSeries; books: NormalizedBooksPage; currentPage: number; preferences: UserPreferences; unreadOnly: boolean; pageSize: number; initialIsFavorite: boolean; } export function SeriesContent({ series, books, currentPage, preferences, unreadOnly, initialIsFavorite, }: SeriesContentProps) { const { refreshSeries } = useRefresh(); return ( <> ({ success: false }))} initialIsFavorite={initialIsFavorite} /> ); }