Refactoring: use proper way to initialize the main svelte components

This commit is contained in:
Pieter Vander Vennet 2024-06-15 02:21:18 +02:00
parent 4dc48274dc
commit 5354cbf6c3
15 changed files with 43 additions and 30 deletions

View file

@ -1,4 +1,6 @@
import SvelteUIElement from "./UI/Base/SvelteUIElement"
import Test from "./UI/Test.svelte"
new SvelteUIElement(Test).AttachTo("maindiv")
new Test({
target: document.getElementById("maindiv")
})