import { FC } from "react" type Movie = { id: string poster_path: string title: string overview: string } const sampleData = { adult: false, backdrop_path: "/jnE1GA7cGEfv5DJBoU2t4bZHaP4.jpg", genre_ids: [28, 878], id: 1094844, original_language: "en", original_title: "Ape vs. Mecha Ape", overview: "Recognizing the destructive power of its captive giant Ape, the military makes its own battle-ready A.I., Mecha Ape. But its first practical test goes horribly wrong, leaving the military no choice but to release the imprisoned giant ape to stop the colossal robot before it destroys downtown Chicago.", popularity: 2157.099, poster_path: "/dJaIw8OgACelojyV6YuVsOhtTLO.jpg", release_date: "2023-03-24", title: "Ape vs. Mecha Ape", video: false, vote_average: 5.538, vote_count: 52 } export const MovieWall: FC<{ movies: Array }> = (props) => { const movies = props.movies const posters = [] for (let i = 0; i < movies.length; i++) { const movie = movies[i] posters.push( ) } return <> {posters} } type PosterProps = { movie: Movie; } function Poster({ movie }: PosterProps) { return

{movie.title}

{movie.overview}

}