MCPcopy Index your code
hub / github.com/firebase/quickstart-js / CarouselProps

Interface CarouselProps

dataconnect/app/src/components/carousel.tsx:4–14  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2import MovieCard from '@/components/moviecard';
3
4interface 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
16export default function Carousel({ title, movies }: CarouselProps) {
17 return (

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected