react-custom-scrollbars-2
react-custom-scrollbars-2 copied to clipboard
How to disable Parent component scrollbar?
I have child component inside Parent component and both components have scrollbar. In some scenario I want to disable parent component scrollbar.
How should I achieve?
Can you please help me?
Just put this in the parent css
.parent-component {
overflow: hidden;
}