Skip to content

Commit

Permalink
Fix import paths for Home, SignUp, and Login components in App.jsx
Browse files Browse the repository at this point in the history
  • Loading branch information
rebeljelly2147 committed Feb 7, 2025
1 parent 0f9c846 commit f238c72
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions frontend/src/App.jsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import { Navigate, Route, Routes } from "react-router-dom";
import "./App.css";
import Home from "./pages/home/Home";
import SignUp from "./pages/signup/SignUp";
import Home from "./pages/home/home.jsx";
import SignUp from "./pages/signup/signup.jsx";
import Login from "./Pages/login/login.jsx";
import { Toaster } from "react-hot-toast";
import { useAuthContext } from "./context/AuthContext";
import Login from "./Pages/login/login";


function App() {
Expand Down

0 comments on commit f238c72

Please sign in to comment.