React

Chapter 6 – React : Material UI

What is Material UI in React JS? Material UI is an open-source project that features React components that implement Google’s Material Design. It is faster and easier for web development. Build your own design system, or start with Material Design. The library’s website can be found at https://material-ui.com. Below is[...]

By |January 6, 2021|Tags: |

Chapter 4 – React : Real DOM and Virtual DOM

Differentiate between Real DOM and Virtual DOM.   Real DOM Virtual  DOM 1. It updates slow. 1. It updates faster. 2. Can directly update HTML. 2. Can’t directly update HTML. 3. Creates a new DOM if element updates. 3. Updates the JSX if element updates. 4. DOM manipulation is very[...]

By |September 26, 2020|Tags: , , , |

Chapter 2 – React Lifecycle

Life cycle phases in React components Every React component goes through the same lifecycle: A component mounts when it’s added to the screen. A component updates when it receives new props or state, usually in response to an interaction. A component unmounts when it’s removed from the screen. Mounting The[...]

By |August 31, 2020|Tags: , , |
Go to Top