React
Lesson 3 - Components In React
Lesson 4 - Props
Lesson 5 - Hooks
Lesson 6 - States
Lesson 7 - Conditional Rendering
Lesson 8 - Styling In React
Lesson 9 - Forms In React
Lesson 10 - `UseEffect` Hook
Lesson 11 - Web Service Calls In React
To run your React application, use the following command:
npm start
This command starts a dynamic development server and opens your application in the default browser. The server watches for any changes in the source files and automatically reloads the page, providing a smooth development experience.
When you're done with the development and your application is ready to launch, execute the following command:
npm run build
This will create a folder build
containing all the optimized static files ready for deployment.