Init project

This commit is contained in:
Vadim
2021-01-19 20:32:18 +03:00
parent fc593e0014
commit 47cb1fa370
10 changed files with 444 additions and 105 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: {
name: 'world'
}
});
export default app;