December 2019
Intermediate to advanced
598 pages
12h 21m
English
Let's create blank pages for signing in, asking a question, viewing search results, and viewing a question with its answers by carrying out the following steps:
import React from 'react';import { Page } from './Page';export const SignInPage = () => <Page title="Sign In" />;
Here, we have used the Page component we created in the previous chapter to create an empty page that has the title Sign In. We are going to use a similar approach for the other pages we need to create.
import React from 'react';import { Page } from './Page';export const AskPage = () => <Page title="Ask a question" />; ...Read now
Unlock full access