React Introduction

What is React?

React is a JavaScript library for building user interfaces. React is used to build single-page applications.

Why Learn React?

Example

import React from 'react';

function App() {
  return (
    <div>
      <h1>Hello World from React!</h1>
    </div>
  );
}