일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Java
- log4j2
- Machine Learning
- spring
- 하이브리드앱
- annotation
- 자료구조
- spring boot
- bean
- Test Coverage
- 제이쿼리
- jQuery
- javascript
- C++
- AWS
- 어노테이션
- react
- 스프링
- Deep Learning
- 구버전
- 리액트
- JPA
- cache
- transformer
- 자바스크립트
- 스프링 부트
- kotlin
- 테스트 커버리지
- data structure
- ES6
Archives
- Today
- Total
목록○ Programming [Web]/React (1)
박서희연구소
[React] useState Hook
1. useSate 소개 Component에 state 변수를 추가할 수 있는 React의 Hook이다. import { useState } from 'react' function App() { const [name, setName] = useState('Alvin') return ( {name} ) } export default App Component의 최상단에서 useState를 호출하여, 위 코드와 같이 state 변수를 선언할 수 있으며, 아래와 같은 규칙을 따른다. array destructuring(배열 구조 분해)를 사용하여, [something, setSomething] 형태의 state 변수 이름을 사용 useState(initialState)는 parameter 값으로 initial..
○ Programming [Web]/React
2024. 1. 31. 13:43