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.
 
 
 
 

11 satır
268 B

  1. import { connect } from 'react-redux';
  2. import StatusList from '../components/status_list';
  3. const mapStateToProps = function (state, props) {
  4. return {
  5. statuses: state.getIn(['statuses', props.type])
  6. };
  7. };
  8. export default connect(mapStateToProps)(StatusList);