Skip to content

Instantly share code, notes, and snippets.

View MatheusHenrique129's full-sized avatar
🎯
Focusing

Matheus Henrique MatheusHenrique129

🎯
Focusing
View GitHub Profile
@MatheusHenrique129
MatheusHenrique129 / funcional_component_react.js
Last active February 12, 2021 17:16
Componente Funcional React
import { useState } from "react";
function Home() {
const [state, setState] = useState({});
return(<div>Meu Componente</div>);
}
export default Home;