import Link from 'next/link' import { SeriesSection } from './SeriesSection' interface ProfileSeriesBlockProps { currentPubkey: string onSelectSeries: (seriesId: string | undefined) => void selectedSeriesId?: string | undefined } export function ProfileSeriesBlock({ currentPubkey, onSelectSeries, selectedSeriesId }: ProfileSeriesBlockProps) { return (

Séries

{selectedSeriesId && (
Ouvrir la page de la série sélectionnée
)}
) }