April 2018
Intermediate to advanced
298 pages
6h 34m
English
There are a number of text conventions used throughout this book.
CodeInText: Indicates code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles. Here is an example: "Next, let's look at the package.json file that was created by Create React App."
A block of code is set as follows:
import React from 'react';
const Heading = ({ children }) => (
<h1>{children}</h1>
);
export default Heading;
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
import React from 'react';
const Heading = ({ children }) => (
<h1>{children}</h1>
);
export default Heading;
Any command-line input or output ...