The code powering m.abunchtell.com https://m.abunchtell.com
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 

23 satır
529 B

  1. import Status from './status';
  2. import ImmutablePropTypes from 'react-immutable-proptypes';
  3. const StatusList = React.createClass({
  4. propTypes: {
  5. statuses: ImmutablePropTypes.list.isRequired
  6. },
  7. render: function() {
  8. return (
  9. <div style={{ overflowY: 'scroll', flex: '1 1 auto' }}>
  10. <div>
  11. {this.props.statuses.map((status) => {
  12. return <Status key={status.get('id')} status={status} />;
  13. })}
  14. </div>
  15. </div>
  16. );
  17. }
  18. });
  19. export default StatusList;