Merge pull request #9 from AgIt0/patch-1

Fix typo
This commit is contained in:
Rico Sta. Cruz 2015-04-25 16:49:32 +08:00
commit d4afceb61d
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ var UserProfile = React.createClass({...});
var Info = React.createClass({
render() {
return <div>
<UserAvatar username={this.props.username} />
<UserAvatar username={this.props.avatar} />
<UserProfile username={this.props.username} />
</div>;
}