1.在src目录下定义一个containers文件夹存放容器组件
    2.在containers文件夹下新建一个math容器组件
    3.容器组件需要借助react-redux
    4.安装react-redux

    1. yarn add react-redux

    5.引入UI组件

    1. // 引入math(ui组件)
    2. import MathUI from '../../components/Math'

    6.引入redux
    需要在ui组件使用的时候在标签上引入

    1. //引入
    2. import Math from './containers/math'
    3. //使用
    4. <Math store={store}/>

    7.引入connect用于连接ui组件和redux

    1. //引入connect用于连接ui组件和redux
    2. import {connect} from 'react-redux'

    8.使用connect创建并暴露组件

    1. //高阶函数,连接ui组件
    2. //使用connect创建并暴露一个math组件
    3. export default connect()(MathUI)