Skip to content

Instantly share code, notes, and snippets.

@coderspirit-git
coderspirit-git / app.js
Last active October 11, 2021 07:23
react paginate using axios
import "./App.css";
import ReactPaginate from "react-paginate";
import { useEffect, useState } from "react";
import axios from "axios";
function App() {
const [items, setItems] = useState([]);
const [pageCount, setpageCount] = useState(0);