일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 자바
- 파이썬 알고리즘 인터뷰
- execution context
- typeScript
- Computer Science
- OS
- 알고리즘
- Operating System
- 컴퓨터공학
- REACT
- java
- 글또
- JavaScript
- Python
- 프로그래머스
- 자료구조
- 운영체제
- Zerobase
- 코드스테이츠
- algorithm
- 비동기
- context switching
- react 기초
- useState
- codestates
- node.js
- python algorithm
- 자바스크립트
- 파이썬
- 개발공부
Archives
- Today
- Total
목록rect (1)
Back to the Basics
[React] React-Components and Props
이 글은 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