Skip to content

Instantly share code, notes, and snippets.

@Ricardo4466
Last active February 12, 2021 17:16
Show Gist options
  • Save Ricardo4466/7ef3509cce4eefcd09de371d56131a18 to your computer and use it in GitHub Desktop.
Save Ricardo4466/7ef3509cce4eefcd09de371d56131a18 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