6 lines
143 B
JavaScript
6 lines
143 B
JavaScript
const smoothScroll = element =>
|
|
document.querySelector(element).scrollIntoView({
|
|
behavior: 'smooth'
|
|
});
|
|
|
|
module.exports = smoothScroll; |