-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
31 lines (24 loc) · 1.25 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>DevExtreme with React!</title>
<link href="./bower_components/devextreme/css/dx.spa.css" rel="stylesheet" type="text/css"/>
<link href="./bower_components/devextreme/css/dx.common.css" rel="stylesheet" type="text/css"/>
<link href="./bower_components/devextreme/css/dx.dark.compact.css" rel="stylesheet" type="text/css"/>
<link href="./src/css/main.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<div id="content"></div>
<!-- Dependencies -->
<script src="./node_modules/react/dist/react.js"></script>
<script src="./node_modules/react-dom/dist/react-dom.js"></script>
<script src="./bower_components/jquery/dist/jquery.min.js"></script>
<script src='./bower_components/globalize/lib/globalize.js'></script>
<script src="./bower_components/devextreme/js/modules/dx.module-core.js"></script>
<script src="./bower_components/devextreme/js/modules/dx.module-widgets-base.js"></script>
<script src="./bower_components/devextreme/js/modules/dx.module-widgets-web.js"></script>
<!-- Main -->
<script src="./dist/bundle.js"></script>
</body>
</html>