import '@styles/global.css' const ProductDescription = ({Product , User}) => { return ( <> {/* Design the description page */} <h1>Details</h1> <div className="product-desc-container"> <div className="product-images"> </div> <h2>{Product[2]}</h2> <h4>Type: </h4> <p>{Product[3]}</p> <h4>Description: </h4> <p>{Product[5]}</p> </div> </> ) } export default ProductDescription