Last active
November 11, 2023 11:02
-
-
Save niceaji/7ce3771f4b38788440ddd060576dff47 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script> | |
import Count from './Counter.svelte'; | |
</script> | |
<h1>hello svelte</h1> | |
<Count /> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script> | |
let count = 0; | |
function handleClick() { | |
count += 1; | |
} | |
</script> | |
<button on:click={handleClick}> | |
Clicked {count} | |
{count === 1 ? 'time' : 'times'} | |
</button> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment