Notice
Recent Posts
Recent Comments
Link
250x250
반응형
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 라라벨
- huggingface
- 티스토리챌린지
- metamask
- Ai
- Laravel
- Remix
- netfunnel
- threejs
- nft
- exceljs
- jquery
- Kaikas
- nginx
- Python
- 블록체인
- node
- WSL
- chatGPT
- polygon
- NextJS
- miniconda
- docker
- PM2
- AWS
- 배포
- 오블완
- CSS
- 회고
Archives
- Today
- Total
목록react/redux (1)
박주니 개발 정리

1. 먼저 redux 패키지를 설치합니다. npm install redux react-redux 참고 파일구조 2. store 폴더를 생성하고 index.js에 redux 스토어를 생성하고 애플리케이션에 redux를 통합합니다. // src/store/index.js import { createStore } from "redux"; import { combineReducers } from "redux"; import paginationReducer from "./reducers/paginationReducer"; // 리듀서를 복수로 관리하려면 combineReducers 함수를 사용하여 하나의 루트 리듀서로 결합합니다. const rootReducer = combineReducers({ paginati..
react/redux
2023. 6. 30. 16:19