Skip to content

Instantly share code, notes, and snippets.

@diego-miranda-ng
Last active August 21, 2020 01:22
Show Gist options
  • Save diego-miranda-ng/3dc2f3f0305a24f9f9945e2a56a9a146 to your computer and use it in GitHub Desktop.
Save diego-miranda-ng/3dc2f3f0305a24f9f9945e2a56a9a146 to your computer and use it in GitHub Desktop.
Exemplo da utilização do hook useState para lidar com estados em um componente de função.
import React, { useState } from "react";
export default App = (props) => {
const [count, setCount] = useState(0);
return <button onClick={() => setCount(count + 1)}>{count}</button>;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment