Files
reacord/playground/counter.tsx
2021-12-25 01:24:52 -06:00

13 lines
306 B
TypeScript

import * as React from "react"
import { Button } from "../src.new/components/button.js"
export function Counter() {
const [count, setCount] = React.useState(0)
return (
<>
this button was clicked {count} times
<Button label="clicc" onClick={() => setCount(count + 1)} />
</>
)
}