728x90 React 라이브러리 없이 페이지네이션1 React 라이브러리 없이 페이지네이션 구현해보기 게시판처럼 페이지를 나눠서 데이터를 보여주는 방법을 라이브러리 없이 React에서 만들어봤다. 작동 순서는 접속 => 데이터 패치 => 페이지 처리 정도로 보면 되겠다. 데이터가 보여지는 컴포넌트 // Paginatoin.jsx import { useState, useEffect } from "react"; import { Paging } from "./Paging"; import axios from "axios"; export const Pagination = () => { const BASE_URL = "http://localhost:3001"; // 전체 데이터 const [commentList, setCommentList] = useState([]); // 로딩처리 const [isLoading,.. 2022. 9. 30. 이전 1 다음 728x90