![]() |
VOOZH | about |
React.js library is all about splitting the app into several components. Each Component has its own lifecycle. React provides us with some in-built methods that we can override at particular stages in the life-cycle of the component.
In class-based components, the unmountComponentAtNode() method Remove a mounted React component from the DOM.
Creating React Application:
npx create-react-app foldernamecd foldernameProject Structure: It will look like the following.
👁 ImageExample: Now write down the following code in the App.js file. Here, App is our default component where we have written our code.
Step to Run Application: Run the application using the following command from the root directory of the project:
npm startOutput: Now open your browser and go to http://localhost:3000/, you will see the following output:
👁 ImageReference: https://18.react.dev/reference/react-dom/unmountComponentAtNode