목록언어/React (2)
배고픈 개발자 이야기
https://github.com/yoonghee/reactStudy yoonghee/reactStudy React JS Fundamentals Course (2019 Update!). Contribute to yoonghee/reactStudy development by creating an account on GitHub. github.com 완성된 페이지 index.html root에 react는 밀어 넣는거임 react를 빠르게 하는 이유 react는 소스코드에 처음부터 HTML을 넣지 않고, HTML에서 HTML을 추가하거나 제거하는 법을 알고있어 그래서 application이 로드할때 빈 HTML을 로드하게 되고 그런 다음에 react가 HTML을 밀어넣게돼 너의 component에 작성해뒀던..
리액트는 3가지 대표적인 특징을 가지고 있습니다. 1. JSX 문법 JSX는 자바스크립트 안에서 HTML 문법을 사용해서 view를 구성할 수 있게 도와주는 자바스크립트 문법으로, 리액트 개발에 엄청난 도움을 줍니다. class HelloMessage extends React.Component { render() { return ( div> Hello {this.props.name} /div> ); } } class HelloMessage extends React.Component { render() { return React.createElement( "div", null, "Hello ", this.props.name ); } } 마크업 개발은 저렇게 하나의 div만 있는 것도 아니고 복잡할텐데, 지..