01-basics/app-a/App.svelte: add structure of svelte file so it is clear to users reading the docs

pull/6347/head
Tim Sullivan 5 years ago
parent b295d68ec6
commit a1d359b1d8
No known key found for this signature in database
GPG Key ID: 84338713098BED4B

@ -1 +1,11 @@
<h1>Hello world!</h1> <script>
let name = "Svelte";
</script>
<h1>Hello {name}</h1>
<style>
h1 {
color: blue;
}
</style>

Loading…
Cancel
Save