UNPKG

oneframe-react

Version:

Oneframe React ## Components, Hooks, Helper Functions & State Management

12 lines (11 loc) 328 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = (elementId) => { const el = document.getElementById(elementId); if (el) { el.scrollIntoView({ behavior: 'smooth' }); } else { console.warn(`Scroll target element is not found: ${elementId}`); } };