| 9 | import { usePathname, useSearchParams } from 'next/navigation'; |
| 10 | import React from 'react'; |
| 11 | interface IPagination { |
| 12 | dataLength: number; |
| 13 | } |
| 14 | const Pagination: React.FC<IPagination> = ({ dataLength = 1 }) => { |
| 15 | const searchParams = useSearchParams(); |
| 16 | const path = usePathname(); |
nothing calls this directly
no outgoing calls
no test coverage detected