REACT+Cheat+Sheet+-+React+Intro
REACT+Cheat+Sheet+-+React+Intro
This cheat sheet is for the course React 18 Course - Learn React JS the fast way
by Jannick Leismann.
React
Is a popular JavaScript library to create User Interface (UI/Frontend) of
Web Applications. React allows developers to create manageable and reusable components
that can handle their own state that makes the development efficient and scalable.
Component-Based Architecture
React allows web applications to be built using small, reusable components. These components
can manage their own state and lifecycle; this makes the code modular and maintainable. There
are two types of component structures: Functional and Class components.
This will create a new React application in the directory named ‘my-app’ and start the
development server.