mirror of
https://github.com/khairul169/launcher.git
synced 2025-04-28 16:49:37 +07:00
13 lines
306 B
TypeScript
13 lines
306 B
TypeScript
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);
|