Initial push

This commit is contained in:
2026-06-05 15:40:42 -04:00
parent badc2b2ed1
commit fcd0a184d8

View File

@@ -0,0 +1,14 @@
/* scn01 — Vital Signs — v0.1.0 */
(function () {
'use strict';
function initDirectory() {
// TODO: Bootstrap tab init if needed beyond data-bs-toggle
}
function init() {
initDirectory();
}
document.addEventListener('DOMContentLoaded', init);
})();