diff options
| author | 2026-01-16 09:37:20 +0800 | |
|---|---|---|
| committer | 2026-01-16 09:37:20 +0800 | |
| commit | ad36e0ce82770f9b3509ddb1cf96bc3422969806 (patch) | |
| tree | 6df911b964d0d32facf55844c55e61ba3878ae3f /ui/src/main.ts | |
| parent | 455da9d2b07d05c2bdd1fffa5031a6a329cc5643 (diff) | |
| parent | 963b4b8567ac1bd8b23c41e1bfbd6a99d202d1ed (diff) | |
| download | DropOut-ad36e0ce82770f9b3509ddb1cf96bc3422969806.tar.gz DropOut-ad36e0ce82770f9b3509ddb1cf96bc3422969806.zip | |
Merge pull request #41 from HsiangNianian/main
Diffstat (limited to 'ui/src/main.ts')
| -rw-r--r-- | ui/src/main.ts | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/ui/src/main.ts b/ui/src/main.ts index 664a057..d47b930 100644 --- a/ui/src/main.ts +++ b/ui/src/main.ts @@ -1,9 +1,9 @@ -import { mount } from 'svelte' -import './app.css' -import App from './App.svelte' +import { mount } from "svelte"; +import "./app.css"; +import App from "./App.svelte"; const app = mount(App, { - target: document.getElementById('app')!, -}) + target: document.getElementById("app")!, +}); -export default app +export default app; |