Initial line item idea

This commit is contained in:
2026-03-01 15:04:25 -05:00
parent b95a3b6623
commit eb6beea5fa
12 changed files with 2716 additions and 28 deletions

View File

@@ -0,0 +1,9 @@
document.addEventListener("DOMContentLoaded", () => {
if (typeof Stimulus === "undefined") {
console.error("Stimulus is not loaded. Make sure the UMD script is included first.");
return;
}
const application = Stimulus.Application.start();
application.register("nested-form", window.NestedFormController);
});