"use client"; import { Table } from "@tanstack/react-table"; import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue, } from "@/components/ui/select"; import { Button } from "@/components/ui/button"; import { ChevronLeft, ChevronRight } from "lucide-react"; export function TableFooter({ table }: { table: Table }) { return (

Rows per page

Page {table.getState().pagination.pageIndex + 1} of{" "} {table.getPageCount() || 1}
); }