일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 코드스테이츠
- Zerobase
- 자바스크립트
- 알고리즘
- context switching
- Operating System
- codestates
- REACT
- 자료구조
- 파이썬
- 컴퓨터공학
- OS
- Python
- Computer Science
- 자바
- typeScript
- 비동기
- 운영체제
- algorithm
- 글또
- 파이썬 알고리즘 인터뷰
- java
- execution context
- 개발공부
- 프로그래머스
- python algorithm
- node.js
- react 기초
- useState
- JavaScript
Archives
- Today
- Total
목록React Compoent (1)
Back to the Basics
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/Kv3lG/btrbId8PBY1/T0tqyMtLtxqywWCfTKTYiK/img.png)
이 글은 Reac 공식문서를 통해 공부한 내용을 요약한 포스트입니다. Components and Props component는 Javacript의 함수와 비슷하며 다음과 같은 특징을 갖는다. props를 입력받고 screen에 어떻게 표시되는지를 기술하는 React Element를 return 한다. Function and Class Component component는 function 또는 class를 통해 정의된다. Function Component function Welcome(props){ return Hello, {props.name} ; } 위의 함수는 props를 입력으로 받고 React Element를 return 하므로 React component이다. Class Component cla..
Frontend Development/React
2021. 8. 9. 22:29