Skip to content

Instantly share code, notes, and snippets.

View MatheusHenrique129's full-sized avatar
🇧🇷
eat( ); sleep( ); code( ); repeat( );

Matheus Henrique MatheusHenrique129

🇧🇷
eat( ); sleep( ); code( ); repeat( );
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;