upend/webui/src/main.ts

8 lines
105 B
TypeScript
Raw Normal View History

2023-08-01 22:02:52 +02:00
import App from "./App.svelte";
2021-10-29 18:50:33 +02:00
const app = new App({
2023-08-01 22:02:52 +02:00
target: document.body,
2020-09-25 01:11:04 +02:00
});
2021-03-24 20:38:04 +01:00
2023-08-01 22:02:52 +02:00
export default app;