initial commit

This commit is contained in:
2020-12-18 17:17:16 +01:00
commit 4bb3bae4e6
7 changed files with 7943 additions and 0 deletions

12
src/App.svelte Normal file
View File

@@ -0,0 +1,12 @@
<script>
const world = 'world'; // edit world and save to see hmr update
</script>
<style>
h1 {
color: orangered; /* change color an save to see hmr update */
}
</style>
<h1>Hello {world}</h1>
<p>Open App.svelte in your editor and change something to see HMR in action</p>