December 2019
Intermediate to advanced
598 pages
12h 21m
English
Let's create another component to get more familiar with the process. This time, we'll create a component for the home page by carrying out the following steps:
import React from 'react';export const HomePage = () => ( <div> <div> <h2>Unanswered Questions</h2> <button>Ask a question</button> </div> </div>);
Our home page simply consists of a title containing the text, Unanswered Questions, and a button to submit a question.
import { HomePage } from './HomePage';
<div className="App"> <Header /> <HomePage /> ...
Read now
Unlock full access