forked from danielstocks/react-sortable
-
Notifications
You must be signed in to change notification settings - Fork 3
/
nested.html
39 lines (30 loc) · 1.16 KB
/
nested.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>React Nested Sortable</title>
<link href="demo/nested/nested.css" rel="stylesheet"/>
</head>
<body>
<h1>React Nested Sortable</h1>
<p>View source and documentation on <a href="https://github.com/danielstocks/react-sortable/">Github</a>. Check out the <a href="./">list/grid</a> demo </p>
<div id="app"></div>
<script src="bower_components/react/react.js"></script>
<script src="bower_components/react/JSXTransformer.js"></script>
<script src="bower_components/underscore/underscore.js"></script>
<script src="src/SortableNested.js" type="text/jsx"></script>
<script src="demo/nested/tree.js"></script>
<script src="demo/nested/SortableNestedItem.js" type="text/jsx"></script>
<script src="demo/nested/fixture2.js" type="text/jsx"></script>
<script src="demo/nested/App2.js" type="text/jsx"></script>
<script src="demo/nested/SortableNestedList.js" type="text/jsx"></script>
<script src="demo/StateView.js" type="text/jsx"></script>
<script type="text/jsx">
/** @jsx React.DOM */
var app = React.renderComponent(
<App data={fixture} />,
document.getElementById("app")
);
</script>
</body>
</html>