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
- javascript
- ReactHooks
- typescript
- go
- Gin
- Redux
- storybook
- Spring
- frontend
- hook
- JPA
- java
- component
- backend
- JavaSpring
- 티스토리챌린지
- RTK
- golang
- react-hook-form
- tanstackquery
- test
- css
- satisfiles
- 웹애플리케이션서버
- Chakra
- designpatterns
- React
- springboot
- 오블완
Archives
- Today
- Total
목록2024/10/08 (1)
bkdragon's log
useReducer Action 객체 타입
프로퍼티가 많은 객체를 useReducer를 통해 상태로 다룰 때 Action의 type과 payload를 적절하게 추론하는 타입을 만들어보려고 한다. 목표는 이러하다 예를 들어 아래와 같은 타입이 있다.type User = { email: string; password: string; name: string; phone: string; age : number; deleted: boolean;};이때 Action 객체의 type은 "update_email", "update_password" .... 가 되고 payload가 그거에 맞게 string, string, number, boolean 이 되게 할 것이다. 추후에 상태 업데이트를 위해 dipatch 함수를 사용할..
React
2024. 10. 8. 20:42