diff options
Diffstat (limited to 'src/js/ui/mainLayout.js')
-rw-r--r-- | src/js/ui/mainLayout.js | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/js/ui/mainLayout.js b/src/js/ui/mainLayout.js new file mode 100644 index 0000000..715d95c --- /dev/null +++ b/src/js/ui/mainLayout.js @@ -0,0 +1,20 @@ +// Arching Kaos Main Layout +// +// Kaotisk Hund - 2024 +// +// @license magnet:?xt=urn:btih:0b31508aeb0634b347b8270c7bee4d411b5d4109&dn=agpl-3.0.txt AGPL v3.0 +// + +import { headerSpawn } from "./header.js"; +import { menuSpawn } from "./menu.js"; +import { mainSpawn } from "./main.js"; +import { footerSpawn } from "./footer.js"; + +export function mainLayoutSpawn() +{ + headerSpawn(); + menuSpawn(); + mainSpawn(); + footerSpawn(); +} +// @license-end |