bugl
bugl
HomeLearnPatternsSearch
HomeLearnPatternsSearch

Loading lesson path

Learn/React/React Core
React•React Core

React Tutorial

Learn React

[+: React is a JavaScript library for building user interfaces.

Formula

React is used to build single - page applications.

React allows us to create reusable UI components. Start learning React now ❯ 🏁

Learning by Examples

Our "Show React" tool makes it easy to demonstrate React. It shows both the code and the result.

Example:

import { createRoot } from 'react-dom/client';
function Hello() {
return (

Formula

< h1 > Hello World!</h1 >
);
}

createRoot(document.getElementById('root')).render( <Hello />

);

Run

Example »

Learning by Exercises

Many chapters in this tutorial end with an exercise where you can check you level of knowledge.

See all React Exercises

React Quiz

Test your React skills with a quiz.

React Quiz

Note

This is an optional feature. You can study at W3Schools without creating an account.

Next

React Introduction