Answer the question
In order to leave comments, you need to log in
How can I scroll blocks after rendering in React?
I have a chat page that constantly renders new message blocks.
<div className="user-list">
<ul className="users">
{ this.props.users.map(function(elem,i){
return <li key={i} className="user-item">{elem}</li>
})
}
</ul>
</div>
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question