Last active
February 12, 2021 17:16
-
-
Save Ricardo4466/7ef3509cce4eefcd09de371d56131a18 to your computer and use it in GitHub Desktop.
Componente Funcional React
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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