Home > Web Front-end > JS Tutorial > body text

React Components (Class-based vs Functional)

Linda Hamilton
Release: 2024-09-27 22:41:31
Original
962 people have browsed it

React Components (Class-based vs Functional)

React components are the building blocks of any React application. They allow you to split the UI into independent, reusable pieces that can be managed and rendered separately. React components come in two main types: Functional Components and Class Components.

Functional Components
Functional components are simpler and are written as JavaScript functions. They take props (input data) as an argument and return JSX, which describes what the UI should look like. As of React 16.8, functional components can also handle state and side effects using hooks like useState and useEffect.

import React, { useState } from 'react';

const Welcome = (props) => {
  const [count, setCount] = useState(0);

  return (
    <div>
      <h1>Hello, {props.name}!</h1>
      <p>You've clicked {count} times</p>
      <button onClick={() => setCount(count + 1)}>Click me</button>
    </div>
  );
};

export default Welcome;

Copy after login

Class Components
Class components were the original way to write components in React. They extend the React.Component class and must include a render() method that returns JSX. Class components can have their own state and lifecycle methods like componentDidMount, componentDidUpdate, and componentWillUnmount.

import React, { Component } from 'react';

class Welcome extends Component {
  constructor(props) {
    super(props);
    this.state = { count: 0 };
  }

  handleClick = () => {
    this.setState({ count: this.state.count + 1 });
  }

  render() {
    return (
      <div>
        <h1>Hello, {this.props.name}!</h1>
        <p>You've clicked {this.state.count} times</p>
        <button onClick={this.handleClick}>Click me</button>
      </div>
    );
  }
}

export default Welcome;

Copy after login

Key Concepts:

  • JSX: A syntax extension of JavaScript that looks like HTML. React components return JSX to describe the UI.
  • Props: Short for "properties", props allow you to pass data from parent components to child components.
  • State: A built-in object for storing dynamic data that affects what is rendered in the component. Only components that use state (either functional or class components) can re-render based on changes to this data.

Hooks (for functional components):

  • useState: Allows you to manage state in a functional component.
  • useEffect: Allows you to perform side effects in a functional component (e.g., fetching data, updating the DOM).

React encourages the creation of small, reusable components that can be combined to form larger applications, keeping the codebase modular and easier to maintain.

The above is the detailed content of React Components (Class-based vs Functional). For more information, please follow other related articles on the PHP Chinese website!

source:dev.to
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!