import React from 'react'; import { Card } from 'react-bootstrap'; function ListCard({ id, name, price, main_img }) { return ( {name} {price} 원 ) } export default ListCard