| 132 | }; |
| 133 | |
| 134 | interface EntityPaginationProps { |
| 135 | page: number; |
| 136 | totalPages: number; |
| 137 | onPageChange: (page: number) => void; |
| 138 | disabled?: boolean; |
| 139 | }; |
| 140 | |
| 141 | export const EntityPagination = ({ |
| 142 | page, |
nothing calls this directly
no outgoing calls
no test coverage detected