React CheatSheet
Table of Contents:
React CheatSheet for Developers
Create React App
Create React App is a comfortable environment for learning React, and is the best way to start building a new single-page application in React.
npx create-react-app my-app
cd my-app
npm startReact Components
|
|
React Props
|
|
React Children Props
|
|
React Conditionals
|
|
React Context
React context allows us to pass data to our component tree without using props.
|
|
React useEffect Hooks
|
|