Close button tag to prevent UI warning

pull/7276/head
czomer 5 years ago committed by GitHub
parent a4a1c3c272
commit e0f95ece66
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -7,7 +7,7 @@ At the heart of Svelte is a powerful system of *reactivity* for keeping the DOM
To demonstrate it, we first need to wire up an event handler. Replace line 9 with this: To demonstrate it, we first need to wire up an event handler. Replace line 9 with this:
```html ```html
<button on:click={incrementCount}> <button on:click={incrementCount} />
``` ```
Inside the `incrementCount` function, all we need to do is change the value of `count`: Inside the `incrementCount` function, all we need to do is change the value of `count`:

Loading…
Cancel
Save