summaryrefslogtreecommitdiff
path: root/main.js
diff options
context:
space:
mode:
Diffstat (limited to 'main.js')
-rw-r--r--main.js14
1 files changed, 14 insertions, 0 deletions
diff --git a/main.js b/main.js
new file mode 100644
index 0000000..0ca765b
--- /dev/null
+++ b/main.js
@@ -0,0 +1,14 @@
+'use strict';
+
+const h = Inferno.h;
+
+function render()
+{
+ Inferno.render(
+ h(App, {}),
+ document.getElementById('root')
+ );
+}
+
+
+window.onload = render;