import { Routes, Route, Navigate } from "react-router-dom"; import { useAuth } from "./contexts/AuthContext"; import Navbar from "./components/Navbar"; import Login from "./pages/Login"; import Signup from "./pages/Signup"; import Onboarding from "./pages/Onboarding"; import Addresses from "./pages/Addresses"; import Alerts from "./pages/Alerts"; import AlertHistory from "./pages/AlertHistory"; export default function App() { const { currentUser } = useAuth(); if (!currentUser) { return ( } /> } /> } /> } /> ); } return (
} /> } /> } /> } /> } /> } />
); }