Readme

Hono Counter Component

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/** @jsxImportSource https://esm.sh/hono/jsx */
import { useState } from "https://esm.sh/hono/jsx/dom";
export default function Counter(props: { initialCount?: number }) {
const [count, setCount] = useState(props.initialCount || 0);
return (
<button
onClick={() => {
console.log("clicked!");
setCount(count + 1);
}}
>
Count: {count}
</button>
);
}
Val Town is a social website to write and deploy JavaScript.
Build APIs and schedule functions from your browser.
Comments
Nobody has commented on this val yet: be the first!
July 26, 2024