Table of Contents

About

A component is a user-defined react element in the React tree.

Components let you split the UI into independent, reusable pieces, and think about each piece in isolation.

Conceptually, components are like JavaScript functions. They:

In React, you can create distinct components that encapsulate behavior you need. Then, you can render only some of them, depending on the state of your application. See Conditional rendering

Syntax

Functional vs Class

A valid React component:

  • accepts a single props object argument with data and returns a React element.
  • has a name starting with a capital letter (In order to detect a DOM tag from a React tag. For example, <div/> represents a DOM tag, but represents a component and requires Welcome to be in scope.
  • must return a single root element. Generally, a <div> is added to contain all the others element.



The two below syntax's are equivalent:

What is a React Class Component? (in jsx)
class Welcome extends React.Component {

   // Optional. Needed to set state
  constructor(props) {
     super(props); // Always call the base constructor with props.
  }
  
  render() {
    return <h1>Hello, {this.props.name}</h1>;
  }
  
}

Feature only available to class

Type

Parent/Child

Hierarchy

see React - Tree (Virtual DOM) - Component Hierarchy

Management

Create

Jsx

Element are created generally from a JSX expression that compiles to the What is a React Element? function.

createElement

Note that the jsx function element above is equivalent in Native javascript to:

function Welcome(props) {
  return React.createElement('h1',{}, `Hello, ${props.name}`);
}

where the createElement function permits to create React element (node in the virtual dom tree).

Design: Extracting Components

A good rule of thumb is that if a part of your UI:

  • is used several times (Button, Panel, Avatar),
  • or is complex enough on its own (App, FeedStory, Comment),

it is a good candidate to be a reusable component.

Documentation Creation / Workbench

Documentation of Component and creations testing framework are called Workbench. List of Workbench

Workbench:

Doc:

Libary

Component

Date

Vis

icon

Documentation / Reference