Created
May 22, 2021 17:01
-
-
Save Sergioamjr/4c3f5d82a43b65f422ddb796c3486475 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 { UserContextProvider } from "~hooks/useUserContext"; | |
import UserInfo from "./UserInfo"; | |
export default function App() { | |
return ( | |
<UserContextProvider value="John"> | |
<UserInfo /> | |
</UserContextProvider> | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment