import React, { Component } from 'react' import { Button } from 'antd' export default class index extends Component { addRedux = () => { const { value } = this.selectNumber console.log(this.props) this.props.jia(value * 1) } addReduxSync = () => { const { value } = this.selectNumber this.props.jian(value * 1,1000) } render() { console.log(this.props) return (

当前求和为: {this.props.count}

) } }