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