Consume Context API ( With Consumer method)
With Consumer method
import { NameContext } from '../../../App'import { NameContext } from '../../../App'
export default function GrandChild () {
return(
<NameContext.Consumer>
{(name) => {
return (
<h1>{name}</h1>
)}
}
</NameContext.Consumer>
)
}Last updated