import React from 'react'; import { PaginationLink } from './Pagination.styled'; export interface PageControlProps { current: boolean; url: string; page: number; } const PageControl: React.FC = ({ current, url, page }) => { return (
  • {page}
  • ); }; export default PageControl;