Skip to content

Instantly share code, notes, and snippets.

@matheusml
Created February 11, 2021 19:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save matheusml/664ca27329126f4354f934c10ad273fd to your computer and use it in GitHub Desktop.
Save matheusml/664ca27329126f4354f934c10ad273fd to your computer and use it in GitHub Desktop.
import React, { useContext } from 'react';
import { UserContext } from './App';
function Header() {
const user = useContext(UserContext);
return <span>{user.email}</span>; // "my@email.com"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment