mirror of
https://github.com/taigrr/wails.git
synced 2026-04-15 19:30:49 -07:00
13 lines
179 B
JavaScript
13 lines
179 B
JavaScript
import App from './App.svelte';
|
|
|
|
import * as Wails from '@wailsapp/runtime';
|
|
|
|
let app;
|
|
|
|
Wails.Init(() => {
|
|
app = new App({
|
|
target: document.body,
|
|
});
|
|
});
|
|
|
|
export default app; |