Skip to content

Instantly share code, notes, and snippets.

View Mizi91's full-sized avatar
🏠
Working from home

Pavel Gracias Mizi91

🏠
Working from home
View GitHub Profile
@Mizi91
Mizi91 / PaginationControls.tsx
Last active September 7, 2023 22:04 — forked from joschan21/gist:7adf028d81a75536abcb1e98100ac661
Server pagination example - Next.js.ServerComponent.PostsPagination
'use client'
import { FC } from 'react';
import { useRouter, useSearchParams, usePathname } from 'next/navigation';
interface PaginationControlsProps {
hasNextPage: boolean;
hasPrevPage: boolean;
totalPages: number;
}