-
Book Overview & Buying
-
Table Of Contents
-
Feedback & Rating

React Interview Guide
By :

There are a number of text conventions used throughout this book.
Code in text
: 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: “The child components can consume the context using the useContext
hook.”
A block of code is set as follows:
import { useContext } from 'react'; import { UserContext } from './context'; function MyChildComponent() { const currentUser = useContext(UserContext); return <span>{currentUser}</span>;
Any command-line input or output is written as follows:
git status git add . git commit -m "vercel graphql endpoint for uri" git push
Bold: Indicates a new term, an important word, or words that you see on screen. For instance, words in menus or dialog boxes appear in bold. Here is an example: “In the same way, when the API throws an error due to service unavailability, the respective root cause can be tracked through the DebugValue label.”
Tips or important notes
Appear like this.