launcher/src/main.ts

13 lines
306 B
TypeScript
Raw Normal View History

2024-11-03 11:08:53 +00:00
import { initBackground } from "./background";
import { initLauncher } from "./launcher";
import { initQuickLaunch } from "./quick-launch";
import "./style.css";
const onReady = () => {
initBackground();
initQuickLaunch();
initLauncher();
};
document.addEventListener("DOMContentLoaded", onReady);