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
- state update scheduling
- Modern Javascript
- useContext
- Kruskal Algorithm
- Segment Tree
- DFS
- useState
- 리액트 상태값 업데이트
- batch udpate
- React 훅 사용규칙
- 리액트 성능 최적화
- Greedy
- heap
- java
- codility
- JS Array Functions
- 섬 연결하기
- 리액트의 작동방식
- MST구현
- useReducer
- 프로그래머스#JAVA
- 프로그래머스
- rest operator
- State
- spread operator
- 객체지향 설계 5원칙
- DB Navigator
- Lifting State Up
- react
- BOJ2042
Archives
- Today
- Total
개발하는SM
React 입문 본문
React is a Javascript library for building user interfaces
- 리액트는 기존 기술들보다 좀 더 간단히 사용자 인터페이스를 구축할 수 있도록 돕는다.
- React is all about Component
What is Component?
- 사용자 인터페이스의 모든 것은 결국 Component 로 만들어져 있다.
- HTML, CSS 과 어떤 로직을 위한 Javascript 의 결합
Why Components?
- Reusability
- Seperation of Concerns
How is a component Built?
- HTML + CSS + Javascript
- Declarative Approach : 항상 목표 상태를 정의하는 것이 중요함.
- Build your own, custom HTML Elements
'Web > Front-End' 카테고리의 다른 글
[React] Hook 사용규칙 (0) | 2023.03.13 |
---|---|
useState() VS useReducer() (0) | 2023.02.20 |
React useEffect ( + Cleanup 함수 ) (0) | 2023.02.19 |
React State - Lifting State Up (0) | 2023.01.09 |
모던 자바스크립트 문법 (0) | 2023.01.08 |