import React from 'react' export default class SnapScrollPosition extends React.Component { constructor(props) { super(props) this.state = { positionY: -1 } } componentDidMount() { this.setState({ positionY: window.scrollY }) } render() { return (
{Array.from({ length: 500 }, (x, i) => i + 1).map((i) => { return (
{i}
) })} {this.state.positionY}
) } }