10 lines
235 B
JavaScript
10 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();
|