Intro to React

Introduction to React: A Beginner’s Guide

If you've been exploring web development for a few months, you might have come across the term React. It’s one of the most popular JavaScript libraries for building user interfaces, especially for single-page applications. But what makes React so special, and why should you care about it? Let’s dive into the basics and unravel React in a way that even a beginner can feel confident.


What is React?

React is a JavaScript library developed by Facebook. It allows developers to build reusable UI components, making development more efficient and scalable. Unlike traditional HTML and JavaScript, where you have to write repetitive code for similar elements, React lets you write components that are reusable pieces of UI.


Why Learn React?

Here’s why learning React is a game-changer:

  • Reusable Components: Write once, use many times.
  • Fast and Efficient: Uses a virtual DOM to improve performance.
  • Community Support: Tons of resources and tutorials online.

Setting Up React

To start with React, you’ll need to set up your environment. Here's a step-by-step breakdown:

  1. Install Node.js
    Download and install Node.js (opens in a new tab). It includes npm (Node Package Manager), which is essential for managing React dependencies.

  2. Create a React App
    Use the following command in your terminal:

    npx create-next-app my-app
    # to use legacy react use: `npx create-react-app my-app`

    This will set up a basic React app with all the necessary configurations.

  3. Navigate to Your Project

    cd my-app

    Then, start the development server:

    npm run dev

    Your React (NextJS) app will open in your browser at http://localhost:3000.


Understanding the React Component

In React, the component is the heart of everything. A component in React is simply a JavaScript function that returns HTML-like syntax called JSX. Here’s an example:

function Greeting() {
  return <h1>Hello, React Beginner!</h1>;
}

Breaking it Down:

  1. function Greeting() – This is a simple JavaScript function.
  2. return <h1>Hello, React Beginner!</h1>; – Instead of returning plain text or numbers, this function returns JSX, which looks like HTML but allows JavaScript logic.
  3. <h1> – This is an HTML tag that displays "Hello, React Beginner!" on the page.

To display this component in your app, use it inside another component, like so:

function App() {
  return (
    <div>
      <Greeting />
    </div>
  );
}

Adding an Interactive Button

React is great for creating interactive UIs. Let’s add a button that displays an alert when clicked:

function ClickMeButton() {
  function handleClick() {
    alert("Button was clicked!");
  }
 
  return <button onClick={handleClick}>Click Me</button>;
}

What’s Happening Here?

  • The handleClick function defines what should happen when the button is clicked.
  • The onClick attribute in the <button> connects the button to the handleClick function.

Use this component in your app by including <ClickMeButton /> where needed!


Structuring Your JSX

React encourages clean and organized code. Here’s an example of structuring multiple elements:

function App() {
  return (
    <div>
      <h1>Welcome to My React App!</h1>
      <ClickMeButton />
    </div>
  );
}
  • The div groups multiple elements together.
  • Components like <ClickMeButton /> can be reused anywhere.

Recap of the Basics

  1. React Components – Functions that return JSX.
  2. JSX Syntax – HTML-like syntax inside JavaScript.
  3. onClick – A way to handle user interactions.

By now, you’ve seen how React helps build reusable components and handle basic interactivity. Keep practicing these basics, and you'll soon be ready to explore more advanced concepts.


Practice Code

React Code Runner on: intro

IndGeek provides solutions in the software field, and is a hub for ultimate Tech Knowledge.