Skip to content

Commit

Permalink
Todo en inglés
Browse files Browse the repository at this point in the history
  • Loading branch information
CANCI0 committed Apr 27, 2024
1 parent a5fd3b4 commit 4332767
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions webapp/src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@ function App() {
return (
<BrowserRouter>
<Routes>
{/** Rutas públicas */}
{/** Public routes */}
<Route path="/" element={<Login />} />
<Route path="/login" element={<Login />} />
<Route path="/register" element={<Register />} />
{/** Rutas privadas */}
{/** Private routes */}
<Route element={<ProtectedRoute />}>
<Route path="/home" element={<Home />} />
<Route path="/sobre" element={<Sobre />} />
Expand All @@ -53,7 +53,7 @@ function App() {
<Route path="/config" element={<Config />} />
</Route>

{/* Ruta por defecto */}
{/* Default */}
<Route path="*" element={<WrongRoute />} />
</Routes>
</BrowserRouter>
Expand Down

0 comments on commit 4332767

Please sign in to comment.