MapComplete/src/UI/StudioGui.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
272 B
TypeScript
Raw Normal View History

2023-06-16 02:36:11 +02:00
import SvelteUIElement from "./Base/SvelteUIElement"
import StudioGUI from "./StudioGUI.svelte"
export default class StudioGui {
public setup() {
2024-06-20 04:21:29 +02:00
new StudioGUI({
target: document.getElementById("main"),
})
2023-06-16 02:36:11 +02:00
}
}
new StudioGui().setup()