...
import ScrollArea from 'react-scrollbar'
import UserList from './components/UserList'
class App extends Component {
addUser = (e) => {
//add user function
}
render() {
return (
<ScrollArea>
<UserList />
</ScrollArea>
)
}
}
...
import ScrollArea from 'react-scrollbar'
import UserList from './components/UserList'
class App extends Component {
addUser = (e) => {
this.scrollArea.scrollBottom();
}
render() {
return (
<ScrollArea ref={(ref) => this.scrollArea = ref}>
<UserList />
</ScrollArea>
)
}
}