| 21 | import { ChevronLeft, ChevronRight } from "lucide-react"; |
| 22 | |
| 23 | interface User { |
| 24 | id: string; |
| 25 | email: string; |
| 26 | username: string; |
| 27 | createdAt: string; |
| 28 | } |
| 29 | |
| 30 | interface UsersTableProps { |
| 31 | users: User[]; |
nothing calls this directly
no outgoing calls
no test coverage detected