UNPKG

next-gs

Version:

NPM package for building a React+NextJS+Prisma admin application.

9 lines (6 loc) 238 B
"use client" import { useParams as useNextParams } from "next/navigation"; export function useParams() { const { repo, page } = useNextParams<{ repo: string, page?: string[] }>(); return { repo, page: page?.[0] || null }; }