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