UNPKG

react-scroll-lock

Version:

Scroll lock mixin for React components

26 lines (18 loc) 322 B
react-scroll-lock ================= Scroll lock mixin for React components ### Usage Simply add mixin in component, witch be lock inner scroll. ``` js var ScrollLock = require('react-scroll-lock'); React.createClass({ mixins : [ ScrollLock ], render : function() { return ( <div> ... </div> ) } }) ```