function Example() { // Declare a new state variable named "count", and an update function “setCount" const [count, setCount] = React.useState(0); // initializes count to 0 return (

You clicked {count} times

);}