Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame contribute delete
310 Bytes
"use client"
import { Pagination } from "@/components/pagination"
import { useRoute } from "@/lib/use-route"
export function MDXPagination() {
const route = useRoute()
return (
<Pagination
mt="20"
gap="8"
previous={route.getPrevItem()}
next={route.getNextItem()}
/>
)
}