Replies in the compose form

This commit is contained in:
Eugen Rochko 2016-08-31 22:58:10 +02:00
parent 1e0e17ba85
commit dbae8062f4
15 changed files with 257 additions and 307 deletions

View file

@ -15,7 +15,7 @@ const StatusList = React.createClass({
<div style={{ overflowY: 'scroll', flex: '1 1 auto' }}>
<div>
{this.props.statuses.map((status) => {
return <Status key={status.get('id')} status={status} />;
return <Status key={status.get('id')} status={status} onReply={this.props.onReply} />;
})}
</div>
</div>