React window and simple bar react both are very famous libraries/plugins. And sometimes we need both to be worked together. I came across this issue of simplebar and react-window together is not working in my case so debugged it. and found the reason. Simplebar react scroll event does not provide the currentTarget property in the… Continue reading simple bar react is not working properly with react window
Category: ReactJs
A JavaScript library for building user interfaces.
UI library.
Declarative.
Component-Based.
Learn Once, Write Anywhere.
Can I Replace Error Boundary With Try Catch Block
By the time with the ReactJs we developed a lot of things and end up with some error. At that point we integrate Error Boundary with react Application. And started to think can I replace error boundary with the Try catch block of vanilla JavaScript ? The simple answer for the Question for Can I… Continue reading Can I Replace Error Boundary With Try Catch Block
Reactjs Advanced Interview questions
React library is being used for most of the front-end development and It is being used for a long period of time. It is simple to understand and easy to use, Even a person who knows javascript and ES6 can learn in 15 days. So if a person claims, He has knowledge of more than… Continue reading Reactjs Advanced Interview questions
Disadvantages of virtual DOM
ReactJs is a widely used Ui library, And if you are reading this post so it is confirmed you have thought about something different. Different than the normal reader. Or probably you have read about the advantages of virtual DOM. Let’s back to the main topic, Is it possible to have some disadvantages of virtual… Continue reading Disadvantages of virtual DOM
Reactjs folder structure
React js is a great UI library. It provides the best way to create and manage UI components. But there are other things in the application as well that are not directly dependent on the UI components. So in order to manage the application, in the long run, we need some sort of best reactjs… Continue reading Reactjs folder structure
Complex Programming terms
Most of the time we try to learn something in the programming, From the resources available on the web. We come across the complex programming terms that are difficult, Because of these difficult terms are not able to grasp completely that is available on the web. So we should have a basic understanding of these… Continue reading Complex Programming terms
Logic Agnostic to Composable Component
Problems: Generally when we start creating components in react js which are more likely a container component and that has little or more logic. We generally use many states, effects, and other logics in these containers. But after certain implementation, we come to know that there is some common requirement that we need to extract… Continue reading Logic Agnostic to Composable Component
Context Free React Component
Requirement Generally, when we start creating react components that are dependent on some common props we try to share these props through the react context API. Another case is that if we want to prevent dipper props drilling then again we try to solve this issue with the help of React context API. But in… Continue reading Context Free React Component
Business logic management with state update
React js is a UI library that manages its UI updates with the state changes in the components. When a developer starts using this library with simple UI updates and some business logic. Generally, most of the developers manage their business logic flow with state updates and lifecycle hooks. But they end up with state… Continue reading Business logic management with state update
Small Facts about react components
React js is a chosen UI library for many developers for their front end application. While there are many developers used to react js library but still, there are some points we don’t focus at development time. So below are the small facts about react components that could take us out of bugs or we… Continue reading Small Facts about react components