feat: initialize the wails project

This commit is contained in:
2023-08-25 20:33:11 +00:00
parent 18df5de5a3
commit 7ac2d71b4d
19 changed files with 610 additions and 2 deletions

8
frontend/src/main.js Normal file
View File

@@ -0,0 +1,8 @@
import './style.css'
import App from './App.svelte'
const app = new App({
target: document.getElementById('app')
})
export default app