우당탕탕 개발일기

Whitespace text nodes cannot appear as a child of <tr> 에러 해결 본문

What I Learned/React

Whitespace text nodes cannot appear as a child of <tr> 에러 해결

rilee 2022. 9. 15. 16:44
728x90

말그대로 <tr>과 <tr/> 사이에 빈칸이 존재하면 안되는데 존재하는 경우의 에러!
나같은 경우에는 삼항연산자로 ''를 나오게 해놨더니 발생했다. null로 수정해서 해결!

null과 ''의 차이의 중요성을 또 한 번 알게 됐당

 

 

https://stackoverflow.com/questions/39914455/react-validatedomnesting-text-cannot-appear-as-a-child-of-tr

 

React: validateDOMNesting: #text cannot appear as a child of <tr>

Can you explain me why react show warning Warning: validateDOMNesting(...): #text cannot appear as a child of <tr>. See Router > RouterContext > CarWashPage > AllCarWashTable > tr...

stackoverflow.com

 

728x90