diff options
| author | Brian Cully <bjc@spork.org> | 2025-07-16 18:48:48 -0400 |
|---|---|---|
| committer | Brian Cully <bjc@spork.org> | 2025-07-16 18:48:48 -0400 |
| commit | e1a9e10902de4d927f4c2c87b6c27e6303fa1ead (patch) | |
| tree | 516d92bd5bf204308919d57698277b7bb9e08078 /main.mjs | |
| parent | 5da918119bb2e352f10060a36d9c7e580fa8695e (diff) | |
| download | pnit-e1a9e10902de4d927f4c2c87b6c27e6303fa1ead.tar.gz pnit-e1a9e10902de4d927f4c2c87b6c27e6303fa1ead.zip | |
add js version rendering. still needs download
Diffstat (limited to 'main.mjs')
| -rw-r--r-- | main.mjs | 7 |
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); |
