Files
reacord/playground/counter.tsx
2021-12-22 20:50:17 -06:00

13 lines
287 B
TypeScript

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