Skip to content

Commit

Permalink
Merge branch 'main' into fp06_474_day-2
Browse files Browse the repository at this point in the history
  • Loading branch information
AditiSharma00 authored Mar 29, 2023
2 parents 8c6e442 + 99e8275 commit df18d64
Show file tree
Hide file tree
Showing 15 changed files with 1,254 additions and 6 deletions.
15 changes: 15 additions & 0 deletions pharmeasy/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions pharmeasy/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
"framer-motion": "^6.5.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.8.0",
"react-redux": "^8.0.5",
"react-router-dom": "^6.9.0",
"react-scripts": "5.0.1",
Expand Down
1 change: 1 addition & 0 deletions pharmeasy/public/images/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 7 additions & 1 deletion pharmeasy/src/App.js
Original file line number Diff line number Diff line change
@@ -1,16 +1,22 @@
import "./App.css";

import { NavContents } from "./Components/NavContents";
import { ProductCard } from "./Pages/ProductPage/ProductCard";
import { Products } from "./Pages/ProductPage/Products";
import Content from "./Components/HomePage/Content";
import NavBar from "./Components/Navbar";

function App() {
return <div>


<NavBar />
<Content />
<NavContents/>
<Products/>
<ProductCard/>
</div>;


}

export default App;
Loading

0 comments on commit df18d64

Please sign in to comment.