ATlast — you'll never need to find your favorites on another platform again. Find your favs in the ATmosphere.
atproto
at master 365 B view raw
1import { BrowserRouter, Routes, Route } from 'react-router-dom'; 2import App from './App'; 3 4/** 5 * Application Router 6 * Handles all routing for the application 7 */ 8export default function Router() { 9 return ( 10 <BrowserRouter> 11 <Routes> 12 {/* Main app route */} 13 <Route path="/" element={<App />} /> 14 </Routes> 15 </BrowserRouter> 16 ); 17}