• Uncaught TypeError: react_dom_client__WEBPACK_IMPORTED_MODULE_1__ is not a function

  • Author : Shubham Verma
  • Date : September 15, 2022
  • idkblogs.com

Uncaught TypeError: react_dom_client__WEBPACK_IMPORTED_MODULE_1__ is not a function

I got this error while working on React app. I was working on Microfrontend React app and got this issue. In this post we will see how we can resolve this issue.

idkBlogs

  • Show or Hide Password by Toggle Button In ReactJS

  • Author : Shubham Verma
  • Date : February 25, 2022
  • idkblogs.com

Show or Hide Password by Toggle Button In ReactJS

As the title describes, In this article, we will implement the Show or Hide Password by Toggle Button In ReactJS, We will create a React component and in this React compo...

idkBlogs

  • Handle Error: craco start in React

  • Author : Shubham Verma
  • Date : February 23, 2022
  • idkblogs.com

Handle Error: craco start in React

I was facing a very unique error in React application, the error was releted to craco start. I was unable to run my application, when I ran the project with npm start, it...

idkBlogs

  • Generate PDF of customized content in React

  • Author : Shubham Verma
  • Date : January 19, 2022
  • idkblogs.com

Generate PDF of customized content in React

In React application, if you want to give a functionality to print a PDF or save as a PDF of given contents. This article will help you to generate a pdf document of cont...

idkBlogs

  • Generate PDF of a component in React

  • Author : Shubham Verma
  • Date : January 16, 2022
  • idkblogs.com

Generate PDF of a component in React

Create your component and want to give a functionality to user to print a PDF or save as a PDF. This article will help you to generate a pdf document of content of given ...

idkBlogs

  • Cannot find module 'react' from 'pure.js'

  • Author : Shubham Verma
  • Date : June 1, 2021
  • idkblogs.com

Cannot find module 'react' from 'pure.js'

The error Cannot find module react from pure.js can be populated while running command yarn test or npm install or yarn install or React is not installed properly.

idkBlogs

  • Conditionally add attributes to React components

  • Author : Shubham Verma
  • Date : May 10, 2021
  • idkblogs.com

Conditionally add attributes to React components

In React, its often required to add attributes conditionally. It is very easy in React. For certain attributes, React is intelligent enough to omit the attribute if the v...

idkBlogs

  • Eliminate Render-Blocking Resources

  • Author : Shubham Verma
  • Date : May 7, 2021
  • idkblogs.com

Eliminate Render-Blocking Resources

Eliminate render-blocking resources takes place an important role app development (in server side rendering too). This degrade the performance and takes much time to load...

idkBlogs

  • Use Storybook For React App

  • Author : Shubham Verma
  • Date : May 3, 2021
  • idkblogs.com

Use Storybook For React App

How to use Storybook to write Test Case for React Component? Storybook is a tool to make UI better and better. Storybook is used to make the UI development faster without...

idkBlogs

  • Implement Steps In React

  • Author : Shubham Verma
  • Date : May 2, 2021
  • idkblogs.com

Implement Steps In React

Sometimes, we need to show the steps in our React component, In this article, we will show you how to make Steps based Component in just 2 minutes. This will be a very qu...

idkBlogs

  • Top most React interview questions - Advance Level

  • Author : Shubham Verma
  • Date : February 16, 2021
  • idkblogs.com

Top most React interview questions - Advance Level

If we talk about the javascript framework for front-end, React is Best one. At this time, React is the fatest growing javascript framework and the demand for React develo...

idkBlogs

  • Top most React interview questions - Basic Level

  • Author : Shubham Verma
  • Date : February 13, 2021
  • idkblogs.com

Top most React interview questions - Basic Level

If you are a front-end developer and want to know about the React or want to prepare youself for interviews then this article is only for you. In now days, React is becom...

idkBlogs

  • What is Render Props in React?

  • Author : Shubham Verma
  • Date : December 20, 2020
  • idkblogs.com

What is Render Props in React?

In this article, we'll know about the Render Props in React and we'll get the overall understanding of the Render Props. What are the benefits of Render Props? How we can...

idkBlogs

  • Error: Data is missing in props validation | eslint (react/prop-types): React

  • Author : Shubham Verma
  • Date : December 15, 2020
  • idkblogs.com

Error: Data is missing in props validation | eslint (react/prop-types): React

Sometimes we need to write code very neat and clean and sometimes we get some strange error. Here we'll talk about one of the very famous error which is 'Data is missing ...

idkBlogs

  • Implement shortcut keys in React app

  • Author : Shubham Verma
  • Date : November 1, 2020
  • idkblogs.com

Implement shortcut keys in React app

Implement the shortcut keys in your React app as per your choice, You can select your shortcut key combinations and implement in your React app as per the requirements. I...

idkBlogs

  • Integrate SVGs in React as a Component

  • Author : Shubham Verma
  • Date : October 9, 2020
  • idkblogs.com

Integrate SVGs in React as a Component

Sometime we have our own custom image/icon as SVG (.svg file), and we need to integrate this file in our app (need to show as an image). So in this article, we will learn...

idkBlogs

  • Call child component's method from parent component in React

  • Author : Shubham Verma
  • Date : August 30, 2020
  • idkblogs.com

Call child component's method from parent component in React

If I have a parent component and a child component, and sometimes we need to call child's method from parent component. So in this article we'll call a child method from ...

idkBlogs

  • Compare props having large data structure in ComponentDidUpdate connected with Redux

  • Author : Shubham Verma
  • Date : August 28, 2020
  • idkblogs.com

Compare props having large data structure in ComponentDidUpdate connected with Redux

In react component, what is the best way to compare props which have large data? How to do setState in ComponentDidUpdate() in react?

idkBlogs

  • How to implement Internalization (i18n) in react app?

  • Author : Shubham Verma
  • Date : April 3, 2020
  • idkblogs.com

How to implement Internalization (i18n) in react app?

Internalization or i18n is the process or technique of describing something according to the end-users in many countries or you can say in many languages. Here, Internali...

idkBlogs

  • Create and use the custom hook in react app from scratch

  • Author : Shubham Verma
  • Date : March 28, 2020
  • idkblogs.com

Create and use the custom hook in react app from scratch

In this article, we will learn what is custom hooks? how to create custom hooks? and how to use this hook in our application? We will learn about the custom hooks like Wh...

idkBlogs