File size: 429 Bytes
96bba34
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import { Route, Routes } from "react-router-dom";

import Dashboard from "./pages/Dashboard";
import Presentation, { PresentationFinal } from "./pages/Presentation";

export default function App() {
  return (
    <Routes>
      <Route path="/" element={<Presentation />} />
      <Route path="/dashboard" element={<Dashboard />} />
      <Route path="/presentation/final" element={<PresentationFinal />} />
    </Routes>
  );
}