9 lines
232 B
JavaScript
9 lines
232 B
JavaScript
import { attachGearList } from "/gear/gear.mjs";
|
|
import { loadHTML } from "/global/loadin.mjs";
|
|
|
|
export function loadDependencies() {
|
|
loadHTML("hd-box", "/header/header.html");
|
|
attachGearList("main");
|
|
}
|
|
|
|
loadDependencies();
|