Warning: A component is changing an uncontrolled input to be controlled. This is likely caused by the value changing from undefined to a defined value, which should not happen. Decide between using a controlled or uncontrolled input element for the lifetime of the component. More info: https://reactjs.org/link/controlled-components Forms – React A JavaScript library for building user interfaces ..
2021년에 이미 완강을 한 바가 있으나, 그때는 수박 겉핥기 식으로 빠르게 경험해본다 라는 안일한 생각으로 배웠던 리액트에 대해 조금 더 깊이있게 공부하고, 블로깅을 하면서 강의에서 핵심인걸 정리해보고자 한다. React는 UI를 Interactive하게 만들어준다. React JS - 어플리케이션이 Interactive 하도록 만들어주는 library // 엔진 역할 React DOM - library 또는 package. 모든 React element들을 HTML body에 둘 수 있도록 해준다 좀 더 상세한 이해를 위해서 검색을 해보았다. React는 View를 만들기 위한 라이브러리 ReactDOM은 UI를 브라우저에 렌더링 할 때 사용하는 라이브러리 바닐라JS에서는 HTML을 미리 만들어두고,..