[docs] remove confusing assignment from stores tutorial (#6867)

Tutorial on writable stores contains unexplained and unused assignment
which might cause confusion.

Proper explanations on `unsubscribe` is in the next step of the tutorial.
pull/6878/head
gunggmee 3 years ago committed by GitHub
parent 6f8a6fe90b
commit 64435d1553
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -6,7 +6,7 @@
let count_value;
const unsubscribe = count.subscribe(value => {
count.subscribe(value => {
count_value = value;
});
</script>

Loading…
Cancel
Save