October 2019
Intermediate to advanced
426 pages
11h 49m
English
Next, we want to display the Post headers in the secondary color. To do this, we need to define a Context Hook for the Post component, as follows:
import React, { useContext } from 'react'
import { ThemeContext } from '../contexts'
export default function Post ({ title, content, author }) { const { secondaryColor } = useContext(ThemeContext)
return ( <div> <h3 style={{ color: ...Read now
Unlock full access