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