From 28641659d21bbd81e8b0f35312c259db0f80b209 Mon Sep 17 00:00:00 2001 From: hemant Date: Thu, 2 Apr 2026 00:49:41 +0530 Subject: [PATCH] Fixed React routing issue for login button. --- webapp/src/App.jsx | 3 ++- webapp/src/pages/Login/Login.css | 15 +++++++++++++++ webapp/src/pages/Login/Login.jsx | 11 +++++++++++ 3 files changed, 28 insertions(+), 1 deletion(-) create mode 100644 webapp/src/pages/Login/Login.css create mode 100644 webapp/src/pages/Login/Login.jsx diff --git a/webapp/src/App.jsx b/webapp/src/App.jsx index 4145449..7ceaf8b 100644 --- a/webapp/src/App.jsx +++ b/webapp/src/App.jsx @@ -1,6 +1,7 @@ import React, { useState, useEffect } from "react"; import { Route, Routes } from "react-router-dom"; import Debug from "./pages/Debug/Debug"; +import Login from "./pages/Login/Login"; import Threads from "./components/GdbComponents/Threads/Threads"; import LocalVariable from "./components/GdbComponents/LocalVariable/LocalVariable"; import Context from "./components/GdbComponents/Context/Context"; @@ -30,6 +31,7 @@ const App = () => { /> + } /> }> } /> } /> @@ -37,7 +39,6 @@ const App = () => { } /> } /> - {/* You can add more routes here */}