Skip to content

Commit

Permalink
added
Browse files Browse the repository at this point in the history
  • Loading branch information
AditiSharma00 committed Mar 29, 2023
1 parent 1e6113f commit 379e425
Show file tree
Hide file tree
Showing 15 changed files with 1,339 additions and 7 deletions.
97 changes: 97 additions & 0 deletions pharmeasy/package-lock.json

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

3 changes: 3 additions & 0 deletions pharmeasy/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"version": "0.1.0",
"private": true,
"dependencies": {
"@chakra-ui/icons": "^2.0.17",
"@chakra-ui/react": "^2.5.4",
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
Expand All @@ -13,7 +14,9 @@
"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",
"redux": "^4.2.1",
"web-vitals": "^2.1.4"
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.
9 changes: 8 additions & 1 deletion pharmeasy/src/App.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
import "./App.css";
import Content from "./Components/HomePage/Content";
import NavBar from "./Components/Navbar";

function App() {
return <div></div>;
return (
<div>
<NavBar />
<Content />
</div>
);
}

export default App;
Loading

0 comments on commit 379e425

Please sign in to comment.