input에 적용할 수 있는 css 및 행위
outline: 0;
border-width: 0 0 2px;
border-color: white;
background: none;
textarea에 적용할 수 있는 css 및 행위
const handleResizeHeight = (e) => {
e.target.style.height = "auto";
e.target.style.height = e.target.scrollHeight + "px";
}
<textarea
onChange={handleResizeHeight}
></textarea>