Hello guys in this video we will discuss shopping cart web app.  first we need to install the basic react app using - npx create-react-app app-name The folder structure should be containing three files  in components folder as below : In App.js :  import  './App.css' ; import  Header  from  './components/Header' ; import  ProductList  from  './components/ProductList' ; import  CartList  from  './components/CartList' ; import  { useState  } from  'react' ; function  App () {   const  [ product , setProduct ] = useState ([     {       url :  'https://rukminim1.flixcart.com/image/300/300/l51d30w0/shoe/z/w/c/10-mrj1914-10-aadi-white-black-red-original-imagft9k9hydnfjp.jpeg?q=70' ,       name :  'TRQ White Shoes' ,       category :  'Shoes' ,       seller :  'AMZ Seller Ghz' ,       price :  1999     },     {       url :  'https://5.imimg.com/data5/KC/PC...
Comments
Post a Comment