I'm working my university project and i have a 4 pages , I want to know how to disable scrolling option only specific page. I'm using following code part, but its apply overall pages. any one have a solution ?
componentWillMount(){
document.body.style.overflow='hidden'
}
export class MyBook extends React.Component<any, any> {
render() {
return (
<div></div>
)
}
}