diff --git a/README.md b/README.md
index a6ae27c..4ad1dcb 100644
--- a/README.md
+++ b/README.md
@@ -16,8 +16,8 @@ Fork, Clone, yarn install, yarn start
* Create a function in index.js called changeCategory thats takes a parameter category. It will assign category to currentCategory and call render()
* Send the changeCategory function to App and then to the TopNav component by way of props
* Send the currentCategory to App by way of props
-* App should use the currentCategory value to filter the array of products by category and then map over them to create ProductDetail components
-* Modify TopNav
+* App should use the currentCategory value to filter the array of products by category and then map over them to create ProductDetail components REVISIT HOMEWORK
+* Modify TopNav DONE
* Remove existing href and replace with "#"
* Register onClick for the links, make sure to use arrow function. Make sure to preventDefault.
* In the arrow function call props.changeCategory("tires"). Send in the category that is appropriate for the link
diff --git a/src/App.js b/src/App.js
index 4513d4b..6add331 100644
--- a/src/App.js
+++ b/src/App.js
@@ -1,117 +1,47 @@
import React from "react";
import "./App.css";
+import Header from "./components/Header";
+import Footer from "./components/Footer";
+import ImageSlider from "./components/ImageSlider";
+import SubHeader from "./components/SubHeader";
+import TopNav from "./components/TopNav";
+import ProductDetails from "./components/ProductDetails";
+
+
function App(props) {
+ //REVISIT MAP AND FILTER HMWK
+ const productCards = props.state.product
+ .filter((product) => product.category === props.currentCategory? true: false)
+ .map((product, i) => )
+
return (