| 2 | import MovieCard from '@/components/moviecard'; |
| 3 | |
| 4 | interface CarouselProps { |
| 5 | title: string; |
| 6 | movies: { |
| 7 | id: string; |
| 8 | title?: string; |
| 9 | imageUrl?: string; |
| 10 | rating?: number | null; |
| 11 | genre?: string | null; |
| 12 | tags?: string[] | null; |
| 13 | }[]; |
| 14 | } |
| 15 | |
| 16 | export default function Carousel({ title, movies }: CarouselProps) { |
| 17 | return ( |
nothing calls this directly
no outgoing calls
no test coverage detected