Initial commit

This commit is contained in:
“Henry-Hiles” 2022-10-18 18:58:00 +00:00
commit 7b9f81dd64
20 changed files with 2789 additions and 0 deletions

View file

@ -0,0 +1,12 @@
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