This repository has been archived on 2025-03-25. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
movie-react-app/src/components/CardList.jsx
“Henry-Hiles” 7b9f81dd64 Initial commit
2022-10-18 18:58:00 +00:00

12 lines
290 B
JavaScript

import Card from "components/Card"
import styles from "styles/CardList.module.css"
const CardList = ({ movies }) => (
<div className={styles.CardList}>
{movies.map((movie) => (
<Card key={movie.id} movie={movie} />
))}
</div>
)
export default CardList