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-native
- debounce
- RN아키텍쳐
- javascript
- Promise
- react native
- Throttle
- react-native-permissions
- hydration mismatch
- RN업데이트
- motion.div
- react
- React-Native업데이트
- no-permission-handler-detected
- ios
- CS
- RN새로운아키텍쳐
- rn
- named type
- Swift
- react-native-image-picker
- axios
- react animation
- Hash-table
- private-access-to-photos
- animation
- await
- promise.all
- async
Archives
- Today
- Total
목록Redux (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