I have a simple list of items.
<List>
{this.state.initialList.map((item, index) => (
<ListItem key={index} button>
<ListItemText primary={item} />
</ListItem>
))}
</List>
If I scroll to the bottom of the list and load a new list, the scroll stays at the bottom. How do I scroll back to the top of the list?
https://codesandbox.io/s/material-demo-l4i3s
In this sandbox, scroll to the bottom, click on "load", the list is showing the last item of the new list.