import * as React from "react" export function Counter() { const [count, setCount] = React.useState(0) return (
You clicked {count} times!