Hi, I'm trying to have full body scroll. How to achieve this without fixed height ?
function App() {
return (
<Scrollbar
plugins={{
overscroll: {
effect: 'glow',
},
}}>
<div className='App'>
<div className='list-data' style={{}}>
{[...Array(20).keys()].map((value, index) => (
<div key={index}>{value + index}</div>
))}
</div>
</div>
</Scrollbar>
);
}```
Hi, I'm trying to have full body scroll. How to achieve this without fixed height ?