-
Notifications
You must be signed in to change notification settings - Fork 5
Open
Description
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>
);
}```Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels