Skip to content

Instantly share code, notes, and snippets.

@MatheusHenrique129
Last active February 12, 2021 17:16
Show Gist options
  • Save MatheusHenrique129/cb0dda7a57287137e7257f0926a74360 to your computer and use it in GitHub Desktop.
Save MatheusHenrique129/cb0dda7a57287137e7257f0926a74360 to your computer and use it in GitHub Desktop.
Componente Funcional React
import { useState } from "react";
function Home() {
const [state, setState] = useState({});
return(<div>Meu Componente</div>);
}
export default Home;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment