As we have already seen in the React Basics, components are small chunk of code like functions. They are reusable and helps to manage the UI easily.
Components accepts inputs called props (properties).
Just like functions, components also return some value. In React, they return Ract elements that defines the UI. On a side note, JSX helps in overall UI creation.
Function Components
Function components are defined like JavaScript functions and that’s why they are called function components.
For e.g.
function Greet(props) {
return Hello, {props.name}
;
}
The function component above accepts one single argument called props.
Class Components
Class components are created using ES6 class syntax.
For e.g.
class Greet extends React.Component {
render() {
return Hello, {this.props.name}
;
}
}
Rendering the component
We saw how to create and render elements earlier.
The same way we can create React elements to represent components.
Just like this:
const element = ;
React will create a single object containing the JSX attributes and children. That single object is called props in React.
Checkout the working demo:
When we call ReactDOM with Greet name=”Yogesh”, React calls Greet component and passed the props object. The props object has {name: ‘Yogesh’} inside it. That’s how our Greet component access the name inside the object, using the famous JavaScript dot operator. And then it simply renders it.
How does React differentiate the DOM tags and components tags?
React checks the first letter of the tag and if it’s in lowercase the it considers that as a DOM tag otherwise it’ll treat as components.
components DOM elements examples property props