Skip to content

Commit

Permalink
Fixed judygab#53
Browse files Browse the repository at this point in the history
  • Loading branch information
adab786 authored Aug 28, 2024
1 parent 7565f16 commit 7168e28
Showing 1 changed file with 11 additions and 8 deletions.
19 changes: 11 additions & 8 deletions personal-portfolio/src/App.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import { BrowserRouter as Router } from "react-router-dom"; // Import Router
import logo from './logo.svg';
import './App.css';
import 'bootstrap/dist/css/bootstrap.min.css';
Expand All @@ -10,14 +11,16 @@ import { Footer } from "./components/Footer";

function App() {
return (
<div className="App">
<NavBar />
<Banner />
<Skills />
<Projects />
<Contact />
<Footer />
</div>
<Router> {/* Wrap with Router */}
<div className="App">
<NavBar />
<Banner />
<Skills />
<Projects />
<Contact />
<Footer />
</div>
</Router>
);
}

Expand Down

0 comments on commit 7168e28

Please sign in to comment.