-
Notifications
You must be signed in to change notification settings - Fork 68
/
Copy pathindex.html
68 lines (60 loc) · 2.12 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<title>React Dart Examples</title>
</head>
<body>
<div class="container">
<h1 class="display-2">React Dart Examples</h1>
<h2 class="display-5">App Example</h2>
<ul>
<li>
<a href="geocodes/geocodes.html">Geocode Resolver App</a>
</li>
</ul>
<h2 class="display-5">Use Case / Test Examples</h2>
<p class="lead">These are mostly here for the benefit of library contributors, but if you want to poke around - that's fine by us!</p>
<ul>
<li>
<a href="test/call_and_nosuchmethod_test.html"><code>call</code> and <code>noSuchMethod</code> test</a>
</li>
<li>
<a href="test/context_test.html"><code>context</code> test</a>
</li>
<li>
<a href="test/error_boundary_test.html">error boundary test</a>
</li>
<li>
<a href="test/get_dom_node_test.html"><code>getDomNode</code> test</a>
</li>
<li>
<a href="test/order_test.html">order test</a>
</li>
<li>
<a href="test/react_test.html">react test</a>
</li>
<li>
<a href="test/ref_test.html"><code>ref</code> test</a>
</li>
<li>
<a href="test/speed_test.html">speed test</a>
</li>
<li>
<a href="test/unmount_test.html"><code>unmountComponentAtNode</code> test</a>
</li>
<li>
<a href="js_components/index.html"><code>JsComponents</code> Example</a>
</li>
<li>
<a href="test/function_component_test.html"><code>Function Component</code> test</a>
</li>
<li>
<a href="suspense/index.html"><code>Suspense</code> Example</a>
</li>
</ul>
</div>
</body>
</html>