Skip to content

Instantly share code, notes, and snippets.

View Ricardo4466's full-sized avatar
🎯
Focusing

Ricardo Teixeira Lima Ricardo4466

🎯
Focusing
  • São Paulo, Brasil
View GitHub Profile
@Ricardo4466
Ricardo4466 / 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;