kinklist/gear/page.mjs
April Eaton 0abf209616 Better devex
Using ES6 modueles and adding a JS LSP to `flake.nix`
2025-12-15 18:27:19 +01:00

9 lines
235 B
JavaScript

import { attachGearList } from "/gear/gear.mjs";
import { loadHTML } from "/global/loadin.mjs";
export function loadDependencies() {
loadHTML("hd-box", "/header/header.html");
attachGearList("gl-body");
}
loadDependencies();