October 2019
Intermediate to advanced
426 pages
11h 49m
English
Now, we are going to create the HomePage component from the PostList component and the Resource Hook that is concerned with the posts. Again, we are going to refactor src/App.js, in order to create a new component.
Let's start creating the HomePage component:
import React, { useEffect, useContext } from 'react'import { StateContext } from '../contexts'export default function HomePage () { const { state, dispatch } = useContext(StateContext) const { error } = state return ( <div> </div> )}
Read now
Unlock full access