UNPKG

nextjs-utils-hooks

Version:

A collection of useful hooks and utils built specifically for Next.js App Router.

6 lines (5 loc) 173 B
export function scrollToElement(selector) { const element = document.querySelector(selector); if (element) element.scrollIntoView({ behavior: "smooth" }); }