October 2019
Intermediate to advanced
426 pages
11h 49m
English
First, we create a new Header component, which is going to display React Hooks Blog in the primaryColor of our app.
Let's create the Header component now:
import React, { useContext } from 'react'
import { ThemeContext } from `'./contexts'
const Header = ({ text }) => { const { primaryColor } = useContext(ThemeContext)
Read now
Unlock full access