Created
May 22, 2021 17:00
-
-
Save Sergioamjr/5dba156378888cbd345e7adfe1c288a1 to your computer and use it in GitHub Desktop.
This file contains 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 useUserContext from "~hooks/useUserContext"; | |
export default function UserInfo() { | |
const userName = useUserContext(); // Inicialmente será '' e logo em seguida 'John'. | |
return <p>Olá, {userName}</p>; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment