Open In App

React Cheat Sheet

Last Updated : 14 Feb, 2024
Improve
Improve
Like Article
Like
Save
Share
Report

React is an open-source JavaScript library used to create user interfaces in a declarative and efficient way. It is a component-based front-end library responsible only for the view layer of a Model View Controller (MVC) architecture. React is used to create modular user interfaces and promotes the development of reusable UI components that display dynamic data.

reactjs-cheat-sheet-2-copy

React Cheat Sheet provides you with a simple, quick reference to commonly used React methods. All the important components and methods are provided in this single page

Boilerplate: Follow the below steps to create a boilerplate

Step 1: Create the application using the command

npx create-react-app <<Project_Name>>

Step 2: Navigate to the folder using the command

cd <<Project_Name>>

Step 3: Open the App.js file and write the below code

Javascript




// App.js
 
import React from 'react';
import './App.css';
export default function App() {
    return (
        <div >
            Hello Geeks
            Lets start learning React
        </div>
    )
}


JSX

JSX stands for JavaScript XML. JSX is basically a syntax extension of JavaScript. It helps us to write HTML in JavaScript and forms the basis of React Development. Using JSX is not compulsory but it is highly recommended for programming in React as it makes the development process easier as the code becomes easy to write and read. 

Sample JSX code:

const ele = <h1>This is sample JSX</h1>;

React Elements

React elements are different from DOM elements as React elements are simple JavaScript objects and are efficient to create. React elements are the building blocks of any React app and should not be confused with React components.

React Element Description Syntax
Class Element Attributes Passes attributes to an element. The major change is that class is changed to className <div className= “exampleclass”></div>
Style Element Attributes Adds custom styling. We have to pass values in double parenthesis like {{}} <div style= {{styleName: Value}}</div>
Fragments Used to create single parent component <>//Other Components</>

ReactJS Import and Export

In ReactJS we use importing and exporting to import already created modules and export our own components and modules rescpectively

Type of Import/Export Description Syntax
Importing Default exports imports the default export from modules import MOD_NAME from “PATH”
Importing Named Values imports the named export from modules import {NAME} from “PATH”
Multiple imports Used to import multiple modules can be user defined of npm packages import MOD_NAME, {NAME} from “PATH”
Default Exports Creates one default export. Each component can have onne default export export default MOD_NAME
Named Exports Creates Named Exports when there are multiple components in a single module export default {NAME}
Multiple Exports Exports mulitple named components  export default {NAME1, NAME2}

React Components

A Component is one of the core building blocks of React. Components in React basically return a piece of JSX code that tells what should be rendered on the screen.

Component Description Syntax
Functional Simple JS functions and are stateless function demoComponent() {
   return (<>
               // CODE
           </>);
}
Class-based Uses JS classes to create stateful components class Democomponent extends React.Component {
   render() {
       return <>//CODE</>;
   }
}
Nested Creates component inside another component function demoComponent() {
   return (<>
               <Another_Component/>
           </>);
}

Javascript




// Functional Component
 
export default function App() {
    return (
        <div >
            Hello Geeks
            Lets start learning React
        </div>
    )
}
 
// Class Component with nesting
class Example extends React.Component {
  render() {
    return (
          <div >
              <App/>
            Hello Geeks
            Lets start learning React
        </div>
     )
  }
}


Managing Data Inside and Outside Components(State and props)

Property Description Syntax
props Passes data between components and is read-only. Mainly used in functional components

// Passing
<Comp prop_name=”VAL”/>

//Accessing
<Comp>{this.props.prop_name}</Comp>

state Manages data inside a component and is mutable. Used with class components constructor(props) {
       super(props);
       this.state = {
           var: value,
       };
 }
setState Updates the value of a state using callback function. it is an asynchronous function call this.setState((prevState)=>({
          // CODE LOGIC
 }))

Javascript




const App = () => {
  const message = "Hello from functional component!";
 
  return (
    <div>
      <ClassComponent message={message} />
    </div>
  );
};
 
class ClassComponent extends React.Component {
  constructor(props) {
    super(props);
    this.state = {
      message: this.props.message
    };
  }
 
  render() {
    return (
      <div>
        <h2>Class Component</h2>
        <p>State from prop: {this.state.message}</p>
      </div>
    );
  }
}


Lifecycle of Components

The lifecycle methods in ReactJS are used to control the components at different stages from initialization till unmounting.

Mounting Phase methods

Method Description Syntax
constructor Runs before component rendering constructor(props){}
render Used to render the component render()
componentDidMount Runs after component is rendered componentDidMount()
componentWillUnmount Runs before a component is removed from DOM comoponentWillUnmount()
componentDidCatch Used to catch errors in component componentDidCatch()

Updating Phase Methods

Method Description Syntax
componentDidUpdate Invokes after component is updated componentDidUpdate(prevProp, prevState, snap)
shouldComponentUpdate Used to avoid call in while re-rendering shouldComponentUpdate(newProp. newState)
render Render component after update render()

Javascript




import React from 'react';
import ReactDOM from 'react-dom';
 
class Test extends React.Component {
    constructor(props) {
        super(props);
        this.state = { hello: "World!" };
    }
 
    componentWillMount() {
        console.log("componentWillMount()");
    }
 
    componentDidMount() {
        console.log("componentDidMount()");
    }
 
    changeState() {
        this.setState({ hello: "Geek!" });
    }
 
    render() {
        return (
            <div>
                <h1>GeeksForGeeks.org, Hello{this.state.hello}</h1>
                <h2>
                    <a onClick={this.changeState.bind(this)}>Press Here!</a>
                </h2>
            </div>);
    }
 
    shouldComponentUpdate(nextProps, nextState) {
        console.log("shouldComponentUpdate()");
        return true;
    }
 
    componentWillUpdate() {
        console.log("componentWillUpdate()");
    }
 
    componentDidUpdate() {
        console.log("componentDidUpdate()");
    }
}
 
ReactDOM.render(
    <Test />,
    document.getElementById('root'));


Conditional Rendering

In React, conditional rendering is used to render components based on some conditions. If the condition is satisfied then only the component will be rendered. This helps in encapsulation as the user is allowed to see only the desired component and nothing else.

Type Description Syntax
if-else Component is rendered using if-else block if (condition) {
    return <COMP1 />;
}else{
    return <COMP2/>;
}
Logical && Operator Used for showing/hiding single component based on condition {condition && <Component/>}
Ternary Operator Component is rendered using if-else block {Condition
       ? <COMP1/>
       : <COMP2/>
 }

Javascript




// Conditional Rendering Using if-else
 
import React from 'react';
import ReactDOM from 'react-dom';
 
// Example Component
function Example(props)
{
    if(!props.toDisplay)
        return null;
    else
        return <h1>Component is rendered</h1>;
}
 
ReactDOM.render(
    <div>
        <Example toDisplay = {true} />
        <Example toDisplay = {false} />
    </div>,
    document.getElementById('root')
);


Javascript




// Conditional rendering using ternary operator
 
import React from 'react';
 
class Example extends React.Component {
  constructor(props) {
    super(props);
    this.state = {
      isLoggedIn: true,
    };
  }
 
  render() {
    const { isLoggedIn } = this.state;
 
    return (
      <div>
        <h1>Small Conditional Rendering Example</h1>
        {isLoggedIn ? (
          <p>Welcome, you are logged in!</p>
        ) : (
          <p>Please log in to access the content.</p>
        )}
      </div>
    );
  }
}
 
export default Example;


Javascript




// Conditional Rendering using && operator
 
import React from 'react';
import ReactDOM from 'react-dom';
 
// Example Component
function Example()
{
    const counter = 5;
 
    return(<div>
            {
                (counter==5) &&
                <h1>Hello World!</h1>
            }
        </div>
        );
}
 
ReactDOM.render(
    <Example />,
    document.getElementById('root')
);


React Lists

We can create lists in React in a similar manner as we do in regular JavaScript i.e. by storing the list in an array. In order to traverse a list we will use the map() function.

Keys are used in React to identify which items in the list are changed, updated, or deleted. Keys are used to give an identity to the elements in the lists. It is recommended to use a string as a key that uniquely identifies the items in the list.

Code Snippet:

const arr = [];
const listItems = numbers.map((number) =>
<li key={number.toString()}>
{number}
</li>
);

Javascript




import React from 'react';
import ReactDOM from 'react-dom';
 
const numbers = [1,2,3,4,5];
 
const updatedNums = numbers.map((number)=>{
    return <li>{number}</li>;
});
 
ReactDOM.render(
    <ul>
        {updatedNums}
    </ul>,
    document.getElementById('root')
);


React DOM Events

Similar to HTML events, React DOM events are used to perform events based on user inputs such as click, onChange, mouseOver etc

Method Description Syntax
Click Triggers an event on click <button onClick={func}>CONTENT</button>
Change Triggers when some change is detected in component  <input onChange={handleChange} />
Submit Triggers an event when form is submitted <form onSubmit={(e) => {//LOGIC}}></form>

Javascript




import React, { useState } from "react";
 
const App = () => {
// Counter is a state initialized to 0
const [counter, setCounter] = useState(0)
 
// Function is called everytime increment button is clicked
const handleClick1 = () => {
    // Counter state is incremented
    setCounter(counter + 1)
}
 
// Function is called everytime decrement button is clicked
const handleClick2 = () => {
    // Counter state is decremented
    setCounter(counter - 1)
}
 
return (
    <div>
    Counter App
        <div style={{
            fontSize: '120%',
            position: 'relative',
            top: '10vh',
        }}>
            {counter}
        </div>
        <div className="buttons">
            <button onClick={handleClick1}>Increment</button>
            <button onClick={handleClick2}>Decrement</button>
        </div>
    </div>
)
}
 
export default App


React Hooks

Hooks are used to give functional components an access to use the states and are used to manage side-effects in React. They were introduced React 16.8. They let developers use state and other React features without writing a class For example- State of a component It is important to note that hooks are not used inside the classes.

Hook Description Syntax
useState Declares state variable inside a function const [var, setVar] = useState(Val);
useEffect Handle side effect in React useEffect(<FUNCTION>, <DEPENDECY>)
useRef Directly creates reference to DOM element const refContainer = useRef(initialValue);
useMemo Returns a memoized value const memVal = useMemo(function, 
 arrayDependencies)

Javascript




import React, { useState } from 'react';
import ReactDOM from 'react-dom/client';
function App() {
    const [click, setClick] = useState(0);
    // using array destructuring here
    // to assign initial value 0
    // to click and a reference to the function
    // that updates click to setClick
    return (
        <div>
            <p>You clicked {click} times</p>
 
            <button onClick={() => setClick(click + 1)}>
                Click me
            </button>
        </div>
    );
}
 
export default App;
 
const root = ReactDOM.createRoot(document.getElementById('root'));
root.render(
<React.StrictMode>
    <App />
</React.StrictMode>
);


PropTypes

PropTypes in React are used to check the value of a prop which is passed into the component. These help in error hanling and are very useful in large scale applications.

Primitive Data Types 

Type Class/Syntax Example
String PropTypes.string “Geeks”
Object PropType.object {course: “DSA”}
Number PropType.number 15,
Boolean PropType.bool true
Function PropType.func const GFG ={return “Hello”}
Symbol PropType.symbol Symbol(“symbole_here”

Array Types

Type Class/Syntax Example
Array PropTypes.array []
Array of strings PropTypes.arrayOf([type]) [15,16,17]
Array of numbers PropTypes.oneOf([arr]) [“Geeks”, “For”, “Geeks”
Array of objects PropTypes.oneOfType([types]) PropTypes.instanceOf()

Object Types

Type Class/Syntax Example
Object PropTypes.object() {course: “DSA”}
Number Object PropTypes.objectOf() {id: 25}
Object Shape PropTypes.shape()

{course: PropTypes.string,
price: PropTypes.number}

Instance PropTypes.objectOf() new obj()

Javascript




import PropTypes from 'prop-types';
import React from 'react';
import ReactDOM from 'react-dom/client';
 
// Component
class ComponentExample extends React.Component{
    render(){
        return(
                <div>
                 
                    {/* printing all props */}
                    <h1>
                        {this.props.arrayProp}
                        <br />
 
                        {this.props.stringProp}
                        <br />
 
                        {this.props.numberProp}
                        <br />
 
                        {this.props.boolProp}
                        <br />
                    </h1>
                </div>
            );
    }
}
 
// Validating prop types
ComponentExample.propTypes = {
    arrayProp: PropTypes.array,
    stringProp: PropTypes.string,
    numberProp: PropTypes.number,
    boolProp: PropTypes.bool,
}
 
// Creating default props
ComponentExample.defaultProps = {
 
    arrayProp: ['Ram', 'Shyam', 'Raghav'],
    stringProp: "GeeksforGeeks",
    numberProp: "10",
    boolProp: true,
}
 
const root = ReactDOM.createRoot(document.getElementById("root"));
root.render(
<React.StrictMode>
    <ComponentExample />
</React.StrictMode>
);


Error Boundaries

Error Boundaries basically provide some sort of boundaries or checks on errors, They are React components that are used to handle JavaScript errors in their child component tree.

React components that catch JavaScript errors anywhere in their child component tree, log those errors, and display a fallback UI. It catches errors during rendering, in lifecycle methods, etc.

Javascript




import React, { Component } from 'react';
 
class ErrorBoundary extends Component {
    constructor(props) {
        super(props);
        this.state = { hasError: false };
    }
 
    componentDidCatch(error, info) {
        // Log the error to an error reporting service
        console.error('Error:', error);
        console.error('Info:', info);
        this.setState({ hasError: true });
    }
 
    render() {
        if (this.state.hasError) {
            // Fallback UI when an error occurs
            return <div>Something went wrong!</div>;
        }
        return this.props.children;
    }
}
 
export default ErrorBoundary;
 
//Apply Error Boundary
 
import React from 'react';
import ErrorBoundary from './ErrorBoundary';
 
function App() {
    return (
        <ErrorBoundary>
            <div>
                {/* Your components here */}
            </div>
        </ErrorBoundary>
    );
}
 
export default App;




Previous Article
Next Article

Similar Reads

jQuery Cheat Sheet – A Basic Guide to jQuery
What is jQuery?jQuery is an open-source, feature-rich JavaScript library, designed to simplify the HTML document traversal and manipulation, event handling, animation, and Ajax with an easy-to-use API that supports the multiple browsers. It makes the easy interaction between the HTML &amp; CSS document, Document Object Model (DOM), and JavaScript.
15+ min read
Tkinter Cheat Sheet
Tkinter, the standard GUI library for Python, empowers developers to effortlessly create visually appealing and interactive desktop applications. This cheat sheet offers a quick reference for the most common Tkinter widgets and commands, along with valuable tips and tricks for crafting well-designed UIs. In this Cheat Sheet, whether you're a beginn
8 min read
CSS Cheat Sheet - A Basic Guide to CSS
What is CSS? CSS i.e. Cascading Style Sheets is a stylesheet language used to describe the presentation of a document written in a markup language such as HTML, XML, etc. CSS enhances the look and feel of the webpage by describing how elements should be rendered on screen or in other media. What is a CSS Cheat Sheet? CSS Cheat Sheet provides you wi
13 min read
Linux Commands Cheat Sheet
Linux, often associated with being a complex operating system primarily used by developers, may not necessarily fit that description entirely. While it can initially appear challenging for beginners, once you immerse yourself in the Linux world, you may find it difficult to return to your previous Windows systems. The power of Linux commands in con
15+ min read
ggplot2 Cheat Sheet
Welcome to the ultimate ggplot2 cheat sheet! This is your go-to resource for mastering R's powerful visualization package. With ggplot2, you can create engaging and informative plots effortlessly. Whether you're a beginner or an experienced programmer, ggplot2's popularity and versatility make it an essential skill to have in your R toolkit. If you
13 min read
C Cheat Sheet
This C Cheat Sheet provides an overview of both basic and advanced concepts of the C language. Whether you're a beginner or an experienced programmer, this cheat sheet will help you revise and quickly go through the core principles of the C language. In this Cheat Sheet, we will delve into the basics of the C language, exploring its fundamental con
15+ min read
Markdown Cheat Sheet
Markdown is a simple way to write and format text using plain text symbols. It's a lightweight language that lets you create nicely formatted text without the use of complex coding. The idea is to make it easy for people to read and understand the formatting, even if they're looking at the raw text. This cheat sheet will go over some of the key com
6 min read
Java Cheat Sheet
Java is a programming language and platform that has been widely used since its development by James Gosling in 1982. It follows the Object-oriented Programming concept and can run programs written in any programming language. Java is a high-level, object-oriented, secure, robust, platform-independent, multithreaded, and portable programming langua
15+ min read
Docker Cheat Sheet : Complete Guide (2024)
Docker is a very popular tool introduced to make it easier for developers to create, deploy, and run applications using containers. A container is a utility provided by Docker to package and run an application in a loosely isolated environment. Containers are lightweight and contain everything needed to run an application, such as libraries and oth
11 min read
NumPy Cheat Sheet: Beginner to Advanced (PDF)
NumPy stands for Numerical Python. It is one of the most important foundational packages for numerical computing &amp; data analysis in Python. Most computational packages providing scientific functionality use NumPy’s array objects as the lingua franca for data exchange. In this Numpy Cheat sheet for Data Analysis, we've covered the basics to adva
15+ min read