코드 (1) 썸네일형 리스트형 리액트 페이지네이션 코드 import React, { useState } from 'react';const itemsPerPage = 10;function YourComponent({ data }) { const [currentPage, setCurrentPage] = useState(1); // Calculate the index of the first and last item of the current page const indexOfLastItem = currentPage * itemsPerPage; const indexOfFirstItem = indexOfLastItem - itemsPerPage; const currentItems = data.slice(indexOfFirstItem, indexOfLastIte.. 이전 1 다음