Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | 1x | import { Route, Routes } from 'react-router-dom';
import './App.css';
import HomePage from './pages/HomePage';
import ListPage from './pages/ListPage';
import RegistrationPage from './pages/RegistrationPage';
function App() {
return (
<div className="App">
<Routes>
<Route path="/" element={<HomePage />} />
<Route path="/register" element={<RegistrationPage />} />
<Route path="/list" element={<ListPage />} />
</Routes>
</div>
);
}
export default App;
|