I just found out that you can add properties. ‘maxHeight’ and ‘overflow’ are the ones I was needing to solve my problem.
For example for a List in a Paper container:
<Paper style={{maxHeight: 200, overflow: 'auto'}}>
<List>
...
</List>
</Paper>