So React Portals are basically React’s way of rendering your desired component into a target dom element anywhere in your react application.
Tag Archives: React Js
Unit testing React functional component with jest and Enzyme
In my current company I am unit testing React components using jest and enzyme. While testing one of the functional components I came across a problem which needed a good solution/explanation and after some research on it I think I found the right way to do it and I wanted to share it with the community
React SSR with HMR: Quick setup guide
React SSR with HMR is a Quick setup guide to quickly bootstrap your react project with helpful features like Server-side rendering and Hot Module Reload.
Password strength indicator: Develop component to show the user how strong is the password in React js
When the user enters the password, he/she should be able to see a bar which shows indicates the strength of the password entered in the field. Red color means it’s a weak password, Orange color means the password has medium strength and Green color means the password is strong enough!
React SSR : Get started with server side rendering react app ASAP
Introduction Hello everyone, This React SSR article is for those developers who love control. Every project they work on, they […]
Convert Array of Arrays into Object with key-value pair in Javascript (Data from websocket)
So in one of my project, I faced a challenge in JavaScript which i would like to share with you […]
Create custom React js Accordion component
Creating components in react can be tricky for beginners. I have done some of my projects in react and the scope of some of those projects are small, so using external components library can make the project comparatively heavy.