-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
25 lines (23 loc) · 818 Bytes
/
App.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import { BrowserRouter as Router, Routes, Route } from "react-router-dom";
import Header from "./sections/Header";
import OwnedClients from "./sections/OwnedClients";
import Contact from "./sections/Contact";
import Intro from "./sections/Intro";
import Skills from "./sections/Skills";
import Projects from "./sections/Projects";
import Links from "./sections/Links";
function App() {
return (
<Router>
<Header />
<Routes>
<Route exact path="/" element={<Intro />} />
<Route exact path="/skills" element={<Skills />} />
<Route exact path="/contact" element={<Contact />} />
<Route exact path="/projects" element={<Projects />} />
<Route exact path="/links" element={<Links />} />
</Routes>
</Router>
);
}
export default App;