Create React App is an officially supported way to create single-page React applications. It offers a modern build setup with no configuration. https://create-react-app.dev/docs/getting-started/
#npx create-react-app THE NAME OF YOUR APP/ npm init react-app THE NAME OF YOUR APP
#cd THE NAME OF YOUR APP
#npm start or yarn start
See the tutorials and practical exercises/projects I am following
of Intec Brussel: https://github.com/injecti0n/WebDevClass/tree/master/REACTJS
&
of reactjs.org: https://reactjs.org/docs/hello-world.html
- Hello World
- Introducing JSX
- Rendering Elements
- Components and Props
- State and Lifecycle
- Handling Events
- Conditional Rendering
- Lists and Keys
- Forms
- Lifting State Up
- Composition vs Inheritance
Also
Accessibility Code-Splitting Context Error Boundaries Forwarding Refs Fragments Higher-Order Components Integrating with Other Libraries JSX In Depth Optimizing Performance Portals Profiler React Without ES6 React Without JSX Reconciliation Refs and the DOM Render Props Static Type Checking Strict Mode Typechecking With PropTypes Uncontrolled Components Web Components