You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
svelte/documentation/tutorial/08-stores/01-writable-stores/app-b/App.svelte

19 lines
356 B

<script>
import { count } from './stores.js';
import Incrementer from './Incrementer.svelte';
import Decrementer from './Decrementer.svelte';
import Resetter from './Resetter.svelte';
let countValue;
count.subscribe((value) => {
countValue = value;
});
</script>
<h1>The count is {countValue}</h1>
<Incrementer />
<Decrementer />
<Resetter />