Spaces:
Sleeping
Sleeping
| <script> | |
| let count = $state(0) | |
| const increment = () => { | |
| count += 1 | |
| } | |
| </script> | |
| <button onclick={increment}> | |
| count is {count} | |
| </button> | |
| <script> | |
| let count = $state(0) | |
| const increment = () => { | |
| count += 1 | |
| } | |
| </script> | |
| <button onclick={increment}> | |
| count is {count} | |
| </button> | |