Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- node.js
- javascript 객체리터럴
- node 특징
- 화살표함수
- react hook의 종류
- react
- react.js
- prop-types
- Component
- webpack
- ES6
- MVC패턴
- props 개념
- react webpack 설치
- react class hook 비교
- javascript
- next.js
- 클래스형과 함수형 컴포넌트
- react xcode 에러
- react refresh 설치
- JSON
- react props
- class vs hooks
- React component
- react hook
- node express 라우팅
- 객체 리터럴
Archives
- Today
- Total
목록React component (1)
림찌의 개발일기 💻
[react.js] Component 개념
리액트는 component 기반이다. component를 통해 UI를 재사용 가능한 개별적인 조각으로 나눌 수 있다. component를 정의하는 방법은 두 가지가 있다. 1. Javascript 함수형 컴포넌트 function ImComponent(props){ return Hello, {props.name} } - state와 라이프사이클 사용이 불가하다. (단, Hooks 사용시 사용가능하다) - 컴포넌트 선언이 클래스보다 간편하고 직관적이다. 2. ES6 클래스형 컴포넌트 class ImComponent extends React.Component { render(){ return hello, {this.props.name} } } - state 와 라이프사이클 사용이 가능하다. - 임의 메서드를 ..
React
2021. 5. 2. 21:13