-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathindex.html
More file actions
21 lines (21 loc) · 779 Bytes
/
index.html
File metadata and controls
21 lines (21 loc) · 779 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>React-Scrollable-List Example</title>
<meta name="description" content="A scrollable, high-performance list component for React">
<link rel="stylesheet" href="example/styles.css">
</head>
<body>
<div class="container">
<h1>React Scrollable List</h1>
<p>Example using 10 000 list items</p>
<div id="app"></div>
<p>Note: Scroll inside the list box with the mouse or click and drag the scroll bar to see the actual performance of the list</p>
<div class="footer">
<a href='https://github.com/jwarning/react-scrollable-list'>github.com/jwarning/react-scrollable-list</a>
</div>
</div>
<script src="example/bundle.js"></script>
</body>
</html>