October 2019
Intermediate to advanced
426 pages
11h 49m
English
First of all, we are going to refactor some contents of our App component into a HeaderBar component. The HeaderBar component will contain everything that we want to display on every page: the Header, UserBar, ChangeTheme, and CreatePost components.
Let's start creating the HeaderBar component:
import React, { useContext } from 'react'export default function HeaderBar ({ setTheme }) { return ( <div> </div> )}
Read now
Unlock full access