-
Notifications
You must be signed in to change notification settings - Fork 80
/
index.html
23 lines (22 loc) · 848 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Example | React SimpleTabs</title>
<link rel="stylesheet" href="http://necolas.github.io/normalize.css/3.0.1/normalize.css">
<link rel="stylesheet" href="react-simpletabs.css">
<link rel="stylesheet" href="tabs-custom.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="content">
<h2 class="title">React SimpleTabs</h2>
<div id="tabs"></div>
</div>
<script src="//cdnjs.cloudflare.com/ajax/libs/react/0.12.2/react-with-addons.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/react/0.12.2/JSXTransformer.js"></script>
<script src="react-simpletabs.js"></script>
<script type="text/jsx" src="app.js"></script>
</body>
</html>