Skip to content

Commit

Permalink
Merge pull request #35 from Itera/spa/remove-homepage
Browse files Browse the repository at this point in the history
Remove home page
  • Loading branch information
AnmolS99 authored Aug 24, 2023
2 parents 839e55b + c7ff206 commit b3770ee
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions spa/web/src/App.tsx
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
import { Route, Routes } from "react-router-dom";
import Home from "./pages/Home";
import TreatmentPage from "./pages/TreatmentPage";
import ConfirmationPage from "./pages/ConfirmationPage";

const App = () => {

return (
<Routes>
<Route path="/" element={<Home />}/>
<Route path="/treatments" element={<TreatmentPage/>}/>
<Route path="/" element={<TreatmentPage />}/>
<Route path="/confirmation" element={<ConfirmationPage/>}/>
</Routes>
)
Expand Down

0 comments on commit b3770ee

Please sign in to comment.