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