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
- react
- javascript
- react-native
- RN아키텍쳐
- RN업데이트
- debounce
- react animation
- async
- React-Native업데이트
- motion.div
- axios
- react-native-image-picker
- react native
- react-native-permissions
- ios
- Promise
- rn
- no-permission-handler-detected
- named type
- await
- Swift
- RN새로운아키텍쳐
- 비동기
- private-access-to-photos
- animation
- Throttle
- CS
- promise.all
- hydration mismatch
- Hash-table
Archives
- Today
- Total
목록전역상태관리 (1)
하루살이 개발일지
Redux의 이해 : createSlice에서 reducer와 reducers의 차이
전개 - 에러와 궁금증 const initialState = { number: 0, }; const counterSlice = createSlice({ name: "counter", initialState, reducers: { addNumber: (state, action) => { state.number = state.number + action.payload; }, minusNumber: (state, action) => { state.number = state.number - action.payload; }, }, }); const { addNumber, minusNumber } = counterSlice.actions; const counterReducer = counterSlice.reduce..
웹개발/React
2023. 7. 4. 10:35