250x250
반응형
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
- jquery
- Kaikas
- node
- Python
- exceljs
- netfunnel
- 라라벨
- threejs
- React
- nft
- metamask
- Setting
- Remix
- polygon
- 배포
- CSS
- Laravel
- 오블완
- nodejs
- Ai
- miniconda
- 티스토리챌린지
- PM2
- pagination
- NextJS
- 회고
- 공연티켓
- nginx
- chatGPT
- 블록체인
Archives
- Today
- Total
목록react/redux (1)
박주니 개발 정리
react redux를 이용해서 pagination 활용
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