Skip to content

Commit

Permalink
Merge branch 'paginasEmpresa' of https://github.com/UnBArqDsw2021-2/2…
Browse files Browse the repository at this point in the history
…021.2_G3_stag.io_Frontend into paginasEmpresa
  • Loading branch information
Nathanserra committed Apr 11, 2022
2 parents cf0876f + 96e8f56 commit d71c1fa
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions stag.io/src/App.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import "./App.css";
import { Routes, Route } from "react-router-dom";
import DetalhesCandidato from "../src/pages/DetalhesCandidato";
import DetalhesEmpresa from "../src/pages/DetalhesEmpresa";
import VagaEmpresa from "../src/pages/VagaEmpresa";


import Inicio from "./pages/Inicio/Inicio";
import NavBarLogo from "./components/NavBarLogo";

Expand All @@ -14,11 +14,12 @@ function App() {
<Routes>
<Route path="/" element={<Inicio/>}></Route>
<Route path="/detalhes-candidato" element={<DetalhesCandidato/>}></Route>
<Route path="/detalhes-empresa" element={<DetalhesEmpresa/>}></Route>
<Route path="/vaga-empresa" element={<VagaEmpresa/>}></Route>

</Routes>
</div>
);
}

export default App;
export default App;

0 comments on commit d71c1fa

Please sign in to comment.