-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (36 loc) · 1.38 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>JSHistory example</title>
<script src="components/jquery/jquery.js"></script>
<script src="components/react/react-with-addons.js"></script>
<script src="components/react/JSXTransformer.js"></script>
<script src="components/jquery/jquery.history.js"></script>
<script type="text/jsx" src="components/react-mixins/JSHistory.mixin.jsx"></script>
<script src="app.jsx" type="text/jsx"></script>
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap-theme.min.css">
<script src="//netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script></script></head>
<body>
<style type='text/css'>
BODY {
background-color: #F8F8F8;
text-align: center;
}
.sample_view {
width: 400px;
margin: 40px auto;
}
.sample_view .panel-body {
text-align: center;
}
</style>
<h1>Reactjs JSHistory mixin example</h1>
<div id='root_node'></div>
<div class='footer'>
<a href='https://github.com/leifdenby/jshistory_react_mixin'>github.com/leifdenby/jshistory_react_mixin</a>
</div>
</body>
</html>