/react-scrolllock

Prevent scroll on the <body /> when component is mounted.

Primary LanguageJavaScriptMIT LicenseMIT

React Scroll Lock

Prevent scroll on the <body /> when component is mounted.

Usage

npm install --save react-scrolllock
import ScrollLock from 'react-scrolllock';

class Modal extends Component {
  render () {
    return (
      <div>
        ...
        <ScrollLock />
      </div>
    )
  }
}