Skip to content
Snippets Groups Projects
Select Git revision
  • main
1 result

app.js

Blame
  • app.js 342 B
    import { Routes, Route } from 'react-router-dom';
    
    import { Performance } from './features/hashing/performance.js';
    
    export function App() {
      const page =
        <>
          <h1>Performance for Hashing and Looking Up Words</h1>
          <Performance />
        </>;
      return (
        <Routes>
          <Route path={'/*'} element={page} />
        </Routes>
      );
    }