An Article on React Js for beginners!

React is a popular JavaScript library for building user interfaces. It was developed and is maintained by Facebook, and is widely used for building single-page applications, mobile applications, and complex user interfaces. In this post, we will introduce React to beginners and provide a detailed explanation of the core concepts along with code examples.

Getting Started with React

Before we dive into React, it is important to have a basic understanding of HTML, CSS, and JavaScript. If you are already familiar with these technologies, you can skip this section.

HTML (HyperText Markup Language) is the standard markup language used to create web pages. It consists of elements, such as headings, paragraphs, images, etc., that are used to structure the content of a web page.

CSS (Cascading Style Sheets) is used to style the HTML elements and make the web page look visually appealing.

JavaScript is a high-level programming language that is used to add interactivity to web pages. It can be used to modify the content and style of a web page, validate form data, and perform many other tasks.

Setting Up Your Development Environment

To start working with React, you will need to set up a development environment. The simplest way to do this is to use a code editor, such as Visual Studio Code or Atom, and a web browser. You can also use a development environment that comes with a built-in server, such as CodeSandbox or JSFiddle.

Creating Your First React Component

In React, a component is a reusable piece of code that can be used to create a user interface element. A component can contain HTML, CSS, and JavaScript.

Here is an example of a simple React component:

import React from "react";

class HelloWorld extends React.Component {
  render() {
    return <h1>Hello, World!</h1>;
  }
}

export default HelloWorld;

In this example, we are using the class keyword to create a class called HelloWorld that extends the React.Component class. This class has a single method, render, which returns the HTML that will be displayed on the web page.

Rendering a React Component

To display a React component on a web page, you need to render it using the ReactDOM.render method. The first argument to this method is the component you want to render, and the second argument is the DOM element that the component should be rendered into.

Here is an example of how to render the HelloWorld component:

import React from "react";
import ReactDOM from "react-dom";
import HelloWorld from "./HelloWorld";

ReactDOM.render(<HelloWorld />, document.getElementById("root"));

In this example, we are importing the React and ReactDOM libraries and the HelloWorld component. We then use the ReactDOM.render method to render the HelloWorld component into the root element in the HTML file.

Props and State

In React, components can receive data from their parent components using props (short for properties). Props are passed to a component as attributes in the component's HTML tag.

Here is an example of a component that receives props:

import React from "react";

class Greeting extends React.Component {
  render() {
    return <h1>Hello world</h1>
    }
}

Hope I was able to clear your doubts and still you have any doubts or suggestions then just comment, I will try to reply as soon as possible. Thanks for reading!