The code powering m.abunchtell.com https://m.abunchtell.com
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 

9 行
230 B

  1. import { connect } from 'react-redux';
  2. import Card from '../components/card';
  3. const mapStateToProps = (state, { statusId }) => ({
  4. card: state.getIn(['cards', statusId], null)
  5. });
  6. export default connect(mapStateToProps)(Card);