Cómo implementar ciertas acciones después de SetState en React Hooks
const [count, setCount] = useState(0);
setCount(previousCount => previousCount + 1);
Homeless Heron
const [count, setCount] = useState(0);
setCount(previousCount => previousCount + 1);