forked from remix-run/react-router
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
28 lines (28 loc) · 1.17 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!doctype html>
<html>
<head>
<title>React Router Examples</title>
<link href="global.css" rel="stylesheet"/>
</head>
<body>
<h1>React Router Examples</h1>
<ul>
<li><a href="active-links">Active Links</a></li>
<li><a href="animations">Animations</a></li>
<li><a href="auth-flow">Auth Flow</a></li>
<li><a href="auth-with-shared-root">Auth with Shared Root</a></li>
<li><a href="auth-flow-async-with-query-params">Async Auth with Query Parameters</a></li>
<li><a href="breadcrumbs">Breadcrumbs</a></li>
<li><a href="confirming-navigation">Confirming Navigation</a></li>
<li><a href="dynamic-segments">Dynamic Segments</a></li>
<li><a href="huge-apps">Huge Apps (Partial App Loading)</a></li>
<li><a href="master-detail">Master Detail</a></li>
<li><a href="nested-animations">Nested Animations</a></li>
<li><a href="passing-props-to-children">Passing Props to Children</a></li>
<li><a href="pinterest">Pinterest-style UI (<code>location.state</code>)</a></li>
<li><a href="query-params">Query Params</a></li>
<li><a href="route-no-match">Route Not Found</a></li>
<li><a href="sidebar">Sidebar</a></li>
</ul>
</body>
</html>