5 lines
132 B
JavaScript
5 lines
132 B
JavaScript
|
export default function (hash) {
|
||
|
const element = document.getElementById(hash)
|
||
|
element.scrollIntoView({ behavior: 'smooth' })
|
||
|
}
|