438 B
438 B
meta
| meta | ||||
|---|---|---|---|---|
|
Getting Started
welcome
- install it and do the thing
- then do another thing
here's a code block
import React from "react"
function Counter() {
const [count, setCount] = useState(0)
return (
<>
You clicked {count} times
<Button onClick={() => setCount(count + 1)}>Click me</Button>
</>
)
}
yeah