August 2017
Beginner
374 pages
10h 41m
English
Now, we are going to create another page component that shows information about the blog. To create the AboutPage component, perform the following steps:
import React from 'react'
const AboutPage = () => <div> <h2>Learning Redux blog</h2> <p>This is a blog application written to teach Redux and React. It is built throughout the Learning Redux book.</p> </div>export default AboutPage
This page component won't be displayed yet. In the next step, we are going to create the Router component that allows navigation between the main and the about page.
Read now
Unlock full access