"use client";
import { Film } from "lucide-react";
import type { SeasonSummary } from "@/lib/types";
interface Props {
season: SeasonSummary;
selected: boolean;
onToggle: () => void;
onClick: () => void;
}
export function SeasonTile({ season, selected, onToggle, onClick }: Props) {
return (
{season.episode_count} episodes
);
}