for each loop in react js code example
Example: react loop through array
this.items = this.state.cart.map((item, key) => <li key={item.id}>{item.name}</li>);
this.items = this.state.cart.map((item, key) => <li key={item.id}>{item.name}</li>);