Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fetching Data For Doctor & Finalize Styling #15

Merged
merged 6 commits into from
Oct 2, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
208 changes: 208 additions & 0 deletions package-lock.json

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

2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
"moment": "^2.29.4",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-bootstrap": "^2.9.0",
"react-calendar": "^4.6.0",
"react-clock": "^4.5.0",
"react-dom": "^18.2.0",
Expand All @@ -28,6 +29,7 @@
"react-slick": "^0.29.0",
"react-toastify": "^9.1.3",
"slick-carousel": "^1.8.1",
"swiper": "^10.3.1",
"tailwindcss": "^3.3.3",
"web-vitals": "^2.1.4",
"yup": "^1.3.1"
Expand Down
2 changes: 2 additions & 0 deletions src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ import CreateAppointment from './routes/CreateAppointment';
import Layout from './components/Layout';
import NotMatch from './routes/NotMatch';
import Logout from './routes/Logout';
import Test from './routes/Test';

function App() {
return (
Expand All @@ -38,6 +39,7 @@ function App() {
<Route path="logout" element={<Logout />} />
</Route>
<Route path="*" element={<NotMatch />} />
<Route path="test" element={<Test />} />
</Routes>
</BrowserRouter>
<ToastContainer />
Expand Down
2 changes: 1 addition & 1 deletion src/components/Sidebar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ const Sidebar = () => {
<li className="px-8 py-4 transition-colors border-b cursor-pointer border-white-700 hover:text-green-400">
<button
type="button"
onClick={() => directLink('/list-docs')}
onClick={() => directLink('/doctors')}
className="block w-full"
>
List of Doctors
Expand Down
Loading