initial commit 🎉

This commit is contained in:
2021-03-10 21:29:07 +01:00
parent de211eb1d3
commit 913b1ef047
12 changed files with 404 additions and 168 deletions

10
src/main.js Normal file
View File

@@ -0,0 +1,10 @@
import App from './App.svelte';
const app = new App({
target: document.body,
props: {
appName: 'Electron-Svelte'
}
});
export default app;