GoodCard.jsx 217 B

123456789101112
  1. import React from 'react';
  2. const GoodCard = ({name, price}) => {
  3. return (
  4. <div className='card'>
  5. <h4>{name}</h4>
  6. <h5>{price}</h5>
  7. </div>
  8. );
  9. };
  10. export default GoodCard;