first version

This commit is contained in:
Dmitry Borisenko
2021-08-10 02:19:16 +08:00
parent 8891591793
commit 2cb2debe36
14 changed files with 2172 additions and 2 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;