diff --git a/site/content/tutorial/08-stores/01-writable-stores/app-a/App.svelte b/site/content/tutorial/08-stores/01-writable-stores/app-a/App.svelte index 19cb505f5a..f2a4023f25 100644 --- a/site/content/tutorial/08-stores/01-writable-stores/app-a/App.svelte +++ b/site/content/tutorial/08-stores/01-writable-stores/app-a/App.svelte @@ -6,10 +6,13 @@ let count_value; + count.subscribe(value => { + count_value = value; + });

The count is {count_value}

- \ No newline at end of file +