📄️ Overview
React is a front end library for building reactive web sites.
📄️ Getting Started
Create React App is deprecated, and instead it is preferrable to use Vite to create a new application from scratch.
📄️ Components
Components are reusable UI components. In React everything is a components, including pages.
📄️ Rending
React uses a Virtual DOM which is a light weight in-memory representation of the DOM.
📄️ Hooks
Some hooks are built-in and you can also create your own
📄️ Routers
Routers are used to integrate page navigation within a project. Url to Component mappings can be defined as well as the dynamic parts of a url.
📄️ State Management
React provides many possibilities for state management.