개발/Today I Learned
[TIL] Warning: validateDOMNesting(...): <form> cannot appear as a descendant of <form>
SlowButSteady
2022. 8. 30. 10:49
728x90
Warning: validateDOMNesting(...): <form> cannot appear as a descendant of <form>
In reactjs, I am using the ant-design library for a form. In the console i face this problem: Warning: validateDOMNesting(...): <form> cannot appear as a descendant of <form> Can som...
stackoverflow.com
form 태그 안에 form 태그가 중복으로 들어갔을 때 발생하는 에러.
바깥쪽 form태그를 div태그로 바꿔주니 에러가 해결되었다.