전체 글 (127) 썸네일형 리스트형 [react] yarn 설치 mac os yarn : npm 대신에 사용 가능하는 소프트웨어 A complete log of this run can be found in 와 같은 에러가 떠서 서치 결과.. 1) package-lock.json삭제 rm -rf node_modules 2) 설치 npm install 하고 yarn 설치 npm install --global yarn 하여도 같은 증상이 일어난다.. 내일 다시 해볼 생각이다.. 일어나면 출근..ㅠㅠ [react] input 태그 (onChange, onInput) react에서는 onChange() 와 onInput() 같다 function App() { return ( { console.log('Hi') } } /> ); } 이렇게 작성하면 input창에 글자를 입력할 때마다 Hi 가 콘솔창에 출력된다. input에 입력한 값을 state로 저장하여 출력하려면 function App() { let [inputVal, inputChangeVal] = useState(''); return ( {inputVal} {inputChangeVal(e.target.value)} } /> ); } 표시된다. [react] 부모에서 자식 Component 값 전달 function App() { var num = 1; return( ); } function Modal(props) { return( {props.num} ); } 화면에 1 표시 props라는 문법으로 state를 전송한 뒤에 { props.state이름 } 이렇게 써야한다. 이전 1 ··· 21 22 23 24 25 26 27 ··· 43 다음