import React from "react"; import styled from "styled-components"; export default function Pagination({ total, limit, page, setPage }) { const numPages = Math.ceil(total / limit); return ( <> {Array(numPages).fill().map((_, i) => ( ))} ); } const Paging = styled.div` display: flex; justify-content: center; align-items: center; gap: 4px; margin: 16px; `;