import React, { Component } from 'react'

const withConsole = WrappedComponent => {
  return class extends Component{
    componentWillMount() {
      console.log("================componentWillMount=====================");
    }

    render() {
      return <WrappedComponent {...this.props} /> 
    }
  }
}

export default withConsole
 
装饰器模式
import withConsole from '../../../components/withConsole'
@withConsole