Components
Loading preview...
Navigate to the previous or next page.
@shugar
npx shadcn@latest add https://21st.dev/r/shugar/paginationimport React from "react";
import { Pagination } from "@/components/ui/pagination";
const prev = {
title: 'Home',
href: '#',
};
const next = {
title: 'Introduction',
href: '#',
};
export const Demo = () => (
<div className="w-full">
<Pagination next={next} previous={prev} />
</div>
);