Reactjs – Does change in state unmount functional component
I know that change in state triggers re-rendering of component. So my question is that, does change in state also unmount function component as part of re-rendering process? main.jsx const Fullnote = () => { const notes = useContext(NotesContext); const…