React를 프로젝트를 진행하며 페이지 이동시 아래 에러 발생
DOMException: Failed to execute 'removeChild' on 'Node': The node to be removed is not a child of this node.
에러 발생 소스
ex)
{data &&(<ins/>)}
에러 발생 원인
- 조건부 랜더링시 react에서 ins태그를 node로 인식하지 못함
해결 방법
- react에서 node로 인식 할 수 있는 태그로 감싸줌
ex)
{data &&(<span><ins/></span>)}