import MovieCard from "./MovieCard"; export interface IMovieListProps { movies: Array; } export default function MovieList({ movies }: IMovieListProps) { return (
{movies.length > 0 ? ( movies.map((m) => (
)) ) : (

Nothing to show

)}
); }