🚧 added pages to pagination

Co-authored-by: Sindre Kjelsrud <kjelsrudsindre@gmail.com>
This commit is contained in:
haraldnilsen 2023-09-04 13:22:02 +02:00
parent 4aede77061
commit 898590ac55
2 changed files with 6 additions and 2 deletions

View file

@ -6,7 +6,7 @@ interface PaginationButtonProps {
const PaginationButton: React.FC<PaginationButtonProps> = ({ pageNumber }) => {
return (
<q.div className="">
<q.div className="bg-red-400 p-2 rounded-md">
<p>{pageNumber}</p>
</q.div>
)