This commit is contained in:
Dmitry Borisenko
2021-09-16 02:00:52 +08:00
parent 0d065b65b8
commit a1b8fb754f
21 changed files with 5749 additions and 0 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;