aboutsummaryrefslogtreecommitdiffstats
path: root/main.mjs
diff options
context:
space:
mode:
Diffstat (limited to 'main.mjs')
-rw-r--r--main.mjs7
1 files changed, 7 insertions, 0 deletions
diff --git a/main.mjs b/main.mjs
new file mode 100644
index 0000000..8bebffd
--- /dev/null
+++ b/main.mjs
@@ -0,0 +1,7 @@
+import PNITForm from './pnit-form.mjs';
+
+function init() {
+ PNITForm.register();
+}
+
+document.addEventListener('DOMContentLoaded', init);