Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Empty file added public/App.js
Empty file.
Empty file added public/Components/Carousel.js
Empty file.
Empty file added public/Components/Footer.js
Empty file.
Empty file added public/Components/Header.js
Empty file.
12 changes: 12 additions & 0 deletions public/Components/ProductDetail.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
function ProductDetails(product) {
return(
<div>
<h1>{product.ProductsDetails.price}</h1>
<h1>{product.ProductsDetails.name}</h1>
<h2>{product.ProductsDetails.description}</h2>
<h1>{product.ProductsDetails.review}</h1>
<h1>{product.ProductsDetails.stars}</h1>
</div>
)
}
<button onClick = {() => console.log('Add to Cart')}> Add to Cart</button>;
39 changes: 39 additions & 0 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,46 @@ import App from './App';
import './index.css';
import state from './state';

function App(props){
let productDetailComponents= props.products.map(p => <App products ={p}/>)
return(
<div>
{productDetailComponents}
</div>
)

}
ReactDOM.render(
<App />,
document.getElementById('root')
);

//all of this information stored in Mlab Database//
/*var productDetails =[
{ id:"1",name:"Body Luxuries Sweet Lavender Hand Sanitizer",description:"Psychotropic drugs, not elsewhere classified",
reviews:"46", rating:"2",imgUrl:"http://dummyimage.com/136x167.bmp/cc0000/ffffff",price:"$95.11"},
{id:"2",name:"Topiramate",description:"You will be so happy when you use this product",reviews:"2",rating:"2",imgURL:"http://dummyimage.com/125x134.jpg/cc0000/fffff",price:"37.09"},
{ id:"3",name:"Almond",description:"Other disorders of continuinty of bone,unsp,tibia and fibula",reviews:"27",rating:"5",
imgURL:"http://dummyimage.com/149x190.jpg/dddddd/000000",price:"51.83"},
{id:"4",name:"VYTORIN",description:"Orchard as the place of occurrence of the external cause",reviews:"60",rating:"3",
imgURL:"http://dummyimage.com/162x153.jpg/cc0000/ffffff",price:"$86.93"},
{id:"5",name:"Decolorized Iodine",description:"Injury of prostate", reviews:"20",rating:"1",imgUrl:"http://dummyimage.com/120x245.jpg/cc0000/ffffff"},price:"$70.10"},
{id:"6",name:"Fresh Sugar Honey Tinted Lip Treatment SPF15",description:"this stuff is awesome",reviews:"76",rating:"3",imgURL:"http://dummyimage.com/211x227.bmp/5fa2dd/fffffff",
price:"$39.25"},
{ id:"7",name:"LBEL",description:"The best product ever",reviews:"76",rating:"3",imgURL:"http://dummyimage.com/212x144.jpg/ff4444/ffffff",price:"99.91"},
{id: "8",name:"Cholestyramine",description: "Product 3",reviews: "74",rating:"3",imgUrl: "http://dummyimage.com/204x175.jpg/5fa2dd/ffffff",
price: "$67.17"},
{id:"9",name: "Risperidone",description: " cephalospor/oth beta-lactm antibiot, undet, sequela",
reviews: "9",rating: "1",imgUrl: "http://dummyimage.com/212x108.bmp/cc0000/ffffff",price: "$96.84"},
{
id: "10",name: "MAC",
description: "Other Gram-negative sepsis",
reviews: "45",rating: "2",imgUrl: "http://dummyimage.com/189x109.png/cc0000/ffffff",price: "$74.37"
}
];

ReactDOM.render(
<ProductDetail productDetails ={productDetails} />
document.getElementById('root')
); */