diff --git a/README.md b/README.md
index 258a878..93752dd 100644
--- a/README.md
+++ b/README.md
@@ -7,6 +7,6 @@ Fork, clone, run yarn install, yarn start, pull request
* Import and use this component in ProductDetail
* This component will take a product from props
* It will show the number of reviews followed by "review" or "reviews" depending on if there is one or more reviews
- * It will create a list of the reviews description which will inititally be hidden
+ * It will create a list of the reviews description which will initially be hidden
* When the word "review" is clicked show the reviews
- * When clicked again, hide the reviews
\ No newline at end of file
+ * When clicked again, hide the reviews
diff --git a/src/App.js b/src/App.js
index 8dfa97f..883d5b6 100644
--- a/src/App.js
+++ b/src/App.js
@@ -1,39 +1,55 @@
-import React, { Component } from 'react';
-import logo from './logo.svg';
-import './App.css';
-import NavBar from './components/NavBar';
-import Footer from './components/Footer';
-import ProductDetail from './components/ProductDetail';
-import Carousel from './components/Carousel';
-function App (props) {
-
- var products = props.state.products.map(function(prod){
- return ;
- });
+import React from "react";
+import PropTypes from "prop-types";
+// import logo from "./logo.svg";
+import "./App.css";
+import NavBar from "./components/NavBar";
+import Footer from "./components/Footer";
+import ProductDetail from "./components/ProductDetail";
+import Carousel from "./components/Carousel";
+
+
+function App(props) {
+
+ const products = props.state.products.map(function (prod) {
+ // console.log(prod.id)
return (
-