MCPcopy Create free account
hub / github.com/code100x/cms / IPagination

Interface IPagination

src/components/Pagination.tsx:11–13  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

9import { usePathname, useSearchParams } from 'next/navigation';
10import React from 'react';
11interface IPagination {
12 dataLength: number;
13}
14const Pagination: React.FC<IPagination> = ({ dataLength = 1 }) => {
15 const searchParams = useSearchParams();
16 const path = usePathname();

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected