Form에서 에러가 난다. A component is changing a controlled input of type text to be uncontrolled. Input elements should not switch from controlled to uncontrolled 위 에러는 타입이 잘못 들어왔다는 뜻이다. 살펴보아야 하는 것들은 아래와 같다. 1. input에 다른 타입의 값을 넣고 있는지? String이 들어가야하는 자리에 undefined, Number 등의 타입이 들어가선 안된다. -> 변수를 undefined 대신 빈 문자열로 초기화하거나, value로 넘겨주는 시점에 널처리를 추가할 수 있다. var foo = useState(''); 2. Select, Suggest, Seach..