Update App.svelte

This commit is contained in:
Rich Harris 2019-03-18 10:56:06 -04:00 committed by GitHub
parent faf9546a83
commit a6f7a7d26c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,7 +1,11 @@
<h1>Hello {name}!</h1> <script>
export let name;
</script>
<style> <style>
h1 { h1 {
color: purple; color: purple;
} }
</style> </style>
<h1>Hello {name}!</h1>