counter with react hooks code example
Example: counter with react hooks
import React, { useState } from 'react';
function Example() {
// Declaración de una variable de estado que llamaremos "count" const [count, setCount] = useState(0);
return (
You clicked {count} times
);
}