Skip to content

Commit 037e85b

Browse files
BackendExpertJehanKandyAnupa1998
committed
Update App.jsx
Co-Authored-By: JehanKandy <[email protected]> Co-Authored-By: Anupa Gamage <[email protected]>
1 parent 73d3dd6 commit 037e85b

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

client/src/App.jsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
11
import { BrowserRouter, Route, Routes } from "react-router-dom";
2+
import SignIn from "./components/LoginSignUp/SignIn";
3+
import SignUp from "./components/LoginSignUp/SignUp";
24

35
export default function App() {
46
return (
57
<BrowserRouter>
68
<Routes>
7-
<Route path="/" />
9+
<Route path="/" element={<SignIn />}/>
10+
<Route path="/SignUp" element={<SignUp />} />
811
</Routes>
912
</BrowserRouter>
1013
)

0 commit comments

Comments
 (0)