Update App.svelte

I shouldn't have added s to 0
pull/4456/head
wzx 6 years ago committed by GitHub
parent b8bf3643d4
commit f5863b8f11
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -7,5 +7,5 @@
</script> </script>
<button on:click={handleClick}> <button on:click={handleClick}>
Clicked {count} {count === 1 ? 'time' : 'times'} Clicked {count} {count === 1 || count === 0 ? 'time' : 'times'}
</button> </button>
Loading…
Cancel
Save