-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
25 lines (23 loc) · 1.13 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
<!DOCTYPE html>
<html lang="en" style="height:100%">
<head>
<meta charset="UTF-8">
<title>Divertise Asia - BuckleScript MUI Binding Examples</title>
</head>
<body style="height:100%">
<script>
// stub a variable ReactJS checks. ReactJS assumes you're using a bundler, NodeJS or similar system that provides it the `process.env.NODE_ENV` variable.
window.process = {
env: {
NODE_ENV: 'development'
}
};
</script>
<div id="main-jsx3" style="margin: 10px; overflow:auto; position: absolute; left: 0px; right: 50%;top: 0px; bottom: 0px;"></div>
<div id="main-jsx2" style="margin: 10px; overflow:auto; position: absolute; left: 50%; right: 0px;top: 0px; bottom: 0px;"></div>
<!-- This is https://github.com/marijnh/moduleserve, the secret sauce that allows us not need to bundle things during development, and have instantaneous iteration feedback, without any hot-reloading or extra build pipeline needed. -->
<script src="/moduleserve/load.js" data-module="/lib/js/src/Demo/Index.bs.js"></script>
<!-- Our little watcher. Super clean. Check it out! -->
<script src="/watcher.js"></script>
</body>
</html>