Stop propagation body scroll
npm install react-overflow-scrollingreact-overflow-scrolling
=====================
Stop propagation body scroll

> Auto find children nodes with css property (overflow || overflow-x || overflow-y) and allow native scrolling
``bash`
$ npm i react-overflow-scrolling --save
CSS
`css`
.overflow-scrolling {
overflow: auto;
-webkit-overflow-scrolling: touch;
}
JSX
`js
import OverflowScrolling from 'react-overflow-scrolling';
export class ExampleOverflowScrolling extends React.Component {
render() {
return (
...
);
}
}
``