-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.tsx
More file actions
25 lines (23 loc) · 812 Bytes
/
App.tsx
File metadata and controls
25 lines (23 loc) · 812 Bytes
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 React from 'react';
import { Routes, Route } from 'react-router-dom';
import Splash from './pages/Splash';
import Browse from './pages/Browse';
import Home from './pages/Home';
import Projects from './pages/Projects';
import Skills from './pages/Skills';
import Experience from './pages/Experience';
import Contact from './pages/Contact';
const App: React.FC = () => {
return (
<Routes>
<Route path="/" element={<Splash />} />
<Route path="/browse" element={<Browse />} />
<Route path="/home" element={<Home />} />
<Route path="/projects" element={<Projects />} />
<Route path="/skills" element={<Skills />} />
<Route path="/experience" element={<Experience />} />
<Route path="/contact" element={<Contact />} />
</Routes>
);
};
export default App;