1<BrowserRouter basename="/calendar">
2 <Link to="/today"/> // renders <a href="/calendar/today">
3 <Link to="/tomorrow"/> // renders <a href="/calendar/tomorrow">
4 ...
5</BrowserRouter>
6// A <Router> that uses the HTML5 history API (pushState, replaceState and the popstate event) to keep your UI in sync with the URL.