import React from 'react'; import { Card } from 'react-bootstrap' function ListCard(props) { return ( <> {props.productlist.map((e) => ( {e.pro_name} {e.price}원 {e.pro_name} {e.price}원 ))} ) } export default ListCard