next-query-params
Version:
Convenient state management of query parameters in Next.js apps.
9 lines (8 loc) • 366 B
TypeScript
import { ReactElement } from 'react';
import { QueryParamAdapter } from 'use-query-params';
type Props = {
shallow?: boolean;
children(adapter: QueryParamAdapter): ReactElement | null;
};
export default function NextAdapterPages({ children, shallow }: Props): ReactElement<any, string | import("react").JSXElementConstructor<any>> | null;
export {};