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