October 2019
Intermediate to advanced
426 pages
11h 49m
English
Now, we have to define the consumer in our Header component. We are going to do this in the traditional way for now, and in the next steps use Hooks to define the consumer:
import React from 'react'import { ThemeContext } from './App'
const Header = ({ text }) => ( <ThemeContext.Consumer> {theme => (
<h1 style={{ color: theme.primaryColor ...Read now
Unlock full access