Skip to content

Commit

Permalink
Pagination 삭제
Browse files Browse the repository at this point in the history
  • Loading branch information
shinwonse committed Jun 4, 2024
1 parent 161cef2 commit 3a8c6c9
Showing 1 changed file with 0 additions and 20 deletions.
20 changes: 0 additions & 20 deletions src/app/(post)/posts/page.tsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,6 @@
import Link from 'next/link';

import Card from '@/app/components/Card';
import {
Pagination,
PaginationContent,
PaginationItem,
PaginationLink,
} from '@/components/ui/pagination';
import { getPaginatedPosts } from '@/services/post';
import { cn } from '@/utils/cn';

Expand All @@ -25,20 +19,6 @@ const Posts = async () => {
</li>
))}
</ul>
<Pagination>
<PaginationContent>
<PaginationItem>
<PaginationLink href="#" size="icon">
Previous
</PaginationLink>
</PaginationItem>
<PaginationItem>
<PaginationLink href="#" size="icon">
Next
</PaginationLink>
</PaginationItem>
</PaginationContent>
</Pagination>
</main>
);
};
Expand Down

0 comments on commit 3a8c6c9

Please sign in to comment.