Upgrade react-virtualized to 9.3.0

This commit is contained in:
Ken-Håvard Lieng 2017-03-23 20:38:27 +01:00
parent 7c7821f829
commit f8d57f1b6d
10 changed files with 798 additions and 752 deletions

View file

@ -9,6 +9,10 @@ export default class UserListItem extends PureComponent {
};
render() {
return <p onClick={this.handleClick}>{this.props.user.renderName}</p>;
return (
<p style={this.props.style} onClick={this.handleClick}>
{this.props.user.renderName}
</p>
);
}
}