|
You are here |
react.dev | ||
| | | | |
krasimirtsonev.com
|
|
| | | | | White-labeling React apps / A white label app is an app that we build once and "resell" it to other people/companies. Very often we are talking about applying different themes but sometimes we have to change logic too. Such changes should be as declarative as possible so they scale well. Otherwise is more of a copy/paste exercise. In this article I want to sketch out a couple of approaches for white labeling in React applications. | |
| | | | |
alexsidorenko.com
|
|
| | | | | How useMemo can help you prevent unnecessary re-renders. | |
| | | | |
www.binovarghese.com
|
|
| | | | | Traditionally, you pass information from a parent component to child component via props in React. But data passing through this props drilling can make your code verbose and inconvenient if you have more components in the middle, or if many components in your app need the same information. | |
| | | | |
www.rasikjain.com
|
|
| | | Introduction: As a React developer, you?re likely familiar with the useEffect hook. It?s a powerful tool that allows you to manage side effects in functional components. While its primary role is to handle tasks like data fetching, DOM manipulation, and subscriptions, useEffect can also be a game-changer when it comes to optimizing your application?s performance. In this blog post, we?ll explore some of the best use cases of useEffect in improving performance, complete with sample code to help you get st... | ||