tamhonvotri's picture
Upload folder using huggingface_hub
ccd9809 unverified
<script lang="ts">
let count: number = $state(0)
const increment = () => {
count += 1
}
</script>
<button type="button" class="counter" onclick={increment}>
Count is {count}
</button>