From c04db8e5999626c5ad396aa7e91d5f65f1038081 Mon Sep 17 00:00:00 2001 From: soulehshaikh99 Date: Mon, 3 May 2021 16:04:14 +0530 Subject: [PATCH] =?UTF-8?q?=F0=9F=97=84=EF=B8=8F=20Source=20Code=20Directo?= =?UTF-8?q?ry?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/App.svelte | 30 ++++++++++++++++++++++++++++++ src/main.js | 10 ++++++++++ 2 files changed, 40 insertions(+) create mode 100644 src/App.svelte create mode 100644 src/main.js diff --git a/src/App.svelte b/src/App.svelte new file mode 100644 index 0000000..10faec7 --- /dev/null +++ b/src/App.svelte @@ -0,0 +1,30 @@ + + +
+

Hello {name}!

+

Visit the Svelte tutorial to learn how to build Svelte apps.

+
+ + \ No newline at end of file diff --git a/src/main.js b/src/main.js new file mode 100644 index 0000000..d6cacbb --- /dev/null +++ b/src/main.js @@ -0,0 +1,10 @@ +import App from './App.svelte'; + +const app = new App({ + target: document.body, + props: { + name: 'world' + } +}); + +export default app; \ No newline at end of file