Create wt-odlux directory
[ccsdk/features.git] / sdnr / wt-odlux / odlux / apps / inventoryApp / src / index.html
1 <!DOCTYPE html>
2 <html lang="en">
3
4 <head>
5   <meta charset="UTF-8">
6   <meta name="viewport" content="width=device-width, initial-scale=1.0">
7   <meta http-equiv="X-UA-Compatible" content="ie=edge">
8   <!-- <link rel="stylesheet" href="./vendor.css" > -->
9   <title>Inventory App</title>
10 </head>
11
12 <body>
13   <div id="app"></div>
14   <script type="text/javascript" src="./require.js"></script>
15   <script type="text/javascript" src="./config.js"></script>
16   <script>
17     // run the application
18     require(["app", "inventoryApp", "connectApp", "configurationApp", "faultApp"], function (app, inventoryApp, connectApp, configurationApp, faultApp) {
19       inventoryApp.register();
20       connectApp.register();
21       configurationApp.register();
22       faultApp.register();
23       app("./app.tsx").runApplication();
24     });
25   </script>
26 </body>
27
28 </html>