diff options
Diffstat (limited to 'examples/with-nanostores/src/components/AdminsSvelte.svelte')
-rw-r--r-- | examples/with-nanostores/src/components/AdminsSvelte.svelte | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/examples/with-nanostores/src/components/AdminsSvelte.svelte b/examples/with-nanostores/src/components/AdminsSvelte.svelte deleted file mode 100644 index bae3fbef8..000000000 --- a/examples/with-nanostores/src/components/AdminsSvelte.svelte +++ /dev/null @@ -1,20 +0,0 @@ -<script> - import { admins } from '../store/admins.js'; - import { counter, increaseCounter, decreaseCounter } from '../store/counter.js'; -</script> - -<h1>Svelte</h1> -<ul> - {#each $admins as admin} - <li>{JSON.stringify(admin, null, 2)}</li> - {/each} -</ul> -<div> - <h3>Counter</h3> - <p>{$counter.value}</p> - <button on:click={decreaseCounter}>-1</button> - <button on:click={increaseCounter}>+1</button> -</div> -<br /> -<!-- Just to get rid of a warning --> -<slot /> |