#2articles1week
Read more stories on Hashnode
Articles with this tag
In React, composition and inheritance are still two different approaches to structuring code, but they have different implications compared to...
In React, composition refers to the practice of building complex user interfaces by combining smaller, reusable components. By breaking down a user...
Conditional Rendering in React works the same way conditions work in JavaScript, allowing developers to create distinct components that encapsulate...
In React, the props are immutable (i.e., read-only) data that is passed from the parent component to its child component. Therefore, it is not...
STATE In React, a State is an object that holds the data and behavior of a component. It represents the current state of the component and can be...
JSX is a syntax extension for JavaScript that is commonly used in React to write declarative and component-based user interfaces. JSX is not a...