mirror of
https://github.com/khairul169/launcher.git
synced 2025-06-18 01:29:36 +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);
|